Het is een vrij nieuwe functie op Aurora Postgres, maar het is mogelijk om het zoekresultaat te exporteren naar een bestand op s3:https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/postgresql-s3-export.html#postgresql-s3 -export-bestand
De syntaxis is echter niet hetzelfde als voor MySQL. Voor Postgres is het:
SELECT * from aws_s3.query_export_to_s3('select * from sample_table',
aws_commons.create_s3_uri('sample-bucket', 'sample-filepath', 'us-west-2')
);