Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to export RDS snapshot to S3: "This operation is not currently supported"

I am trying to export MySQL RDS to S3 following Exporting DB Snapshot Data to Amazon S3 - Amazon Relational Database Service.

There are two issues:

  • When I am using the steps in AWS console, I am not able to see the "For Actions, choose Export to Amazon S3" option.

  • If I use the AWS CLI,

    aws rds start-export-task --export-task-identifier my_snapshot_export \
    --source-arn arn:aws:rds:AWS_Region:123456789012:snapshot:snapshot_name \
    --s3-bucket-name my_export_bucket \
    --iam-role-arn iam_role \
    --kms-key-id master_key

it gives the following error:

An error occurred (InvalidParameterCombination) when calling the StartExportTask operation: This operation is not currently supported.

snapshot-action

Aurora MySQL - version

like image 851
Rokhun Jung Avatar asked Sep 18 '25 15:09

Rokhun Jung


1 Answers

Are you sure you are in the right region?

Exporting snapshots is supported in the following AWS Regions:

  • US East (N. Virginia)
  • US East (Ohio)
  • US West (Oregon)
  • Europe (Ireland)
  • Asia Pacific (Tokyo)

Note

You can copy a snapshot from an AWS Region where S3 export isn't supported to one where it is supported, then export the copy. The S3 bucket must be in the same AWS Region as the copy.

like image 174
Florin Marin Avatar answered Sep 21 '25 07:09

Florin Marin