Skip to content

Instantly share code, notes, and snippets.

@DominicWatson
Created December 4, 2024 15:04
Show Gist options
  • Save DominicWatson/917e20cdedd25d123967e0ad4225bf95 to your computer and use it in GitHub Desktop.
Save DominicWatson/917e20cdedd25d123967e0ad4225bf95 to your computer and use it in GitHub Desktop.
Rough idea for a bash script to export suppressed email addresses using AWS CLI + jq
#! /bin/bash
token=""
tmpjsonfile="..path to a tmp file for storing json responses from aws.."
csvfile="..path to your export csv file here.."
command="aws sesv2 list-suppressed-destinations --page-size 1000"
echo "email,reason,date" > $csvfile
while true; do
echo "Fetching page from AWS..."
if [[ -z "$token" ]] ; then
$command > $tmpjsonfile
else
$command --next-token "$token" > $tmpjsonfile
fi
jq '.SuppressedDestinationSummaries[] | [.EmailAddress, .Reason, .LastUpdateTime] | @csv' $tmpjsonfile >> $csvfile
token=$( jq -r '.NextToken' $tmpjsonfile )
[[ -n "$token" && "$token" != "null" ]] || break
done
echo "All done!"
@DominicWatson
Copy link
Author

V rough - please feel free to refine :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment