Skip to main content

AWS CLI Cheatsheet

AWS Command Line Interface Cheatsheet.

Disable pagination

By default AWS cli follows pagination. To disable it, use --no-paginate.

aws xray get-trace-summaries \
--region us-west-2 \
--start-time $(($(date +%s) - 21600)) \
--end-time $(date +%s) \
--no-paginate