Đây là tính năng khá mới trên Aurora Postgres, nhưng có thể xuất kết quả truy vấn thành tệp trên s3: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/postgresql-s3-export.html#postgresql-s3 -export-file
Tuy nhiên, cú pháp không giống với MySQL. Đối với Postgres đó là:
SELECT * from aws_s3.query_export_to_s3('select * from sample_table',
aws_commons.create_s3_uri('sample-bucket', 'sample-filepath', 'us-west-2')
);