What is the final URL for AWS StepFunctions?

The documentation defines endpointas follows:

end point (line) . The final URI to send requests to. The default endpoint is built from configured region. The endpoint must be a type string 'https://{service}.{region}.amazonaws.com'.

I believe the name of the service StepFunctions, and I use the scope us-east-1, so the URL should be:

https://stepfunctions.us-east-1.amazonaws.com

However, this seems to be wrong, what is the actual endpoint URL for this service?

Edit: (answer)

https://states.us-east-1.amazonaws.com
+4
source share
1 answer

, , {service} states StepFunctions.

:

Endpoint {              
  protocol: 'https:',                       
  host: 'states.us-east-1.amazonaws.com',
  port: 443,                                    
  hostname: 'states.us-east-1.amazonaws.com',
  pathname: '/',
  path: '/',                                           
  href: 'https://states.us-east-1.amazonaws.com/' }
+5

Source: https://habr.com/ru/post/1671463/


All Articles