Skip to content

Instantly share code, notes, and snippets.

@mscribellito
Created November 1, 2023 16:27
Show Gist options
  • Save mscribellito/281fa8d32adda857630727c167f291e0 to your computer and use it in GitHub Desktop.
Save mscribellito/281fa8d32adda857630727c167f291e0 to your computer and use it in GitHub Desktop.
AWS Kinesis list delivery streams ARN
streams=$(aws firehose list-delivery-streams --limit 30 --output json | jq '.DeliveryStreamNames | . | join(" ")' -r)
for stream in $streams
do
aws firehose describe-delivery-stream --delivery-stream-name $stream | jq '.DeliveryStreamDescription.DeliveryStreamARN' -r
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment