Created
December 4, 2024 15:04
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
V rough - please feel free to refine :)