Using The AWS CLI

Flag For Setting The Endpoint URL

A small reminder to myself that the flag used to set the endpoint URL in AWS CLI is --endpoint-url. This can be used to access resources running on a local Docker container.

Example:

aws sqs receive-message --endpoint-url http://127.0.0.1:9324/ \
    --queue-url http://127.0.0.1:9324/queue/sqs_delivery \
    --wait-time-seconds 10

Last updated