Creating a Multi-AZ DB cluster snapshot - Amazon Relational Database Service
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Creating a Multi-AZ DB cluster snapshot

When you create a Multi-AZ DB cluster snapshot, make sure to identify which Multi-AZ DB cluster you are going to back up, and then give your DB cluster snapshot a name so you can restore from it later. You can also share a Multi-AZ DB cluster snapshot. For instructions, see Sharing a DB snapshot.

You can create a Multi-AZ DB cluster snapshot using the Amazon Web Services Management Console, the Amazon CLI, or the RDS API.

To create a DB cluster snapshot
  1. Sign in to the Amazon Web Services Management Console and open the Amazon RDS console at https://console.amazonaws.cn/rds/.

  2. In the navigation pane, choose Databases.

  3. In the list, choose the Multi-AZ DB cluster for which you want to take a snapshot.

  4. For Actions, choose Take snapshot.

    The Take DB snapshot window appears.

  5. For Snapshot name, enter the name of the snapshot.

  6. Choose Take snapshot.

The Snapshots page appears, with the new Multi-AZ DB cluster snapshot's status shown as Creating. After its status is Available, you can see its creation time.

You can create a Multi-AZ DB cluster snapshot by using the Amazon CLI create-db-cluster-snapshot command with the following options:

  • --db-cluster-identifier

  • --db-cluster-snapshot-identifier

In this example, you create a Multi-AZ DB cluster snapshot called mymultiazdbclustersnapshot for a DB cluster called mymultiazdbcluster.

For Linux, macOS, or Unix:

aws rds create-db-cluster-snapshot \ --db-cluster-identifier mymultiazdbcluster \ --db-cluster-snapshot-identifier mymultiazdbclustersnapshot

For Windows:

aws rds create-db-cluster-snapshot ^ --db-cluster-identifier mymultiazdbcluster ^ --db-cluster snapshot-identifier mymultiazdbclustersnapshot

You can create a Multi-AZ DB cluster snapshot by using the Amazon RDS API CreateDBClusterSnapshot operation with the following parameters:

  • DBClusterIdentifier

  • DBClusterSnapshotIdentifier

Deleting a Multi-AZ DB cluster snapshot

You can delete Multi-AZ DB snapshots managed by Amazon RDS when you no longer need them. For instructions, see Deleting a DB snapshot.