यह Aurora Postgres पर काफी नई सुविधा है, लेकिन s3 पर एक फ़ाइल में क्वेरी परिणाम निर्यात करना संभव है:https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/postgresql-s3-export.html#postgresql-s3 -निर्यात-फ़ाइल
सिंटैक्स हालांकि MySQL के समान नहीं है। पोस्टग्रेज के लिए यह है:
SELECT * from aws_s3.query_export_to_s3('select * from sample_table',
aws_commons.create_s3_uri('sample-bucket', 'sample-filepath', 'us-west-2')
);