Amazon RDS は DB クラスタのストレージボリュームのスナップショットを作成し、
個々のデータベースだけではなく、その DB クラスタ全体をバックアップします。
-- スナップショットの作成
aws rds create-db-cluster-snapshot \
--db-cluster-identifier cluster01 \
--db-cluster-snapshot-identifier cluster01-snapshot01
-- スナップショットからの復元
aws rds restore-db-cluster-from-snapshot \
--db-cluster-identifier cluster01 \
--snapshot-identifier cluster01-snapshot01 \
--engine aurora-mysql
aws rds create-db-instance \
--db-cluster-identifier cluster01 \
--db-instance-identifier cluster01-instance01 \
--db-instance-class db.t3.small \
--engine aurora-mysql