描述备份
以下过程演示如何显示备份列表。如果需要,您还可以查看特定备份的详细信息。
使用 AWS Management Console 显示备份
登录 AWS Management Console 并打开 ElastiCache 控制台 (https://console.aws.amazon.com/elasticache/
)。 -
从导航窗格中,选择 Backups(备份)。
-
要查看特定备份的详细信息,请选择备份名称左侧的复选框。
要显示无服务器备份列表以及(可选)特定备份的详细信息,请使用 describe-serverless-cache-snapshots
CLI 操作。
示例
以下操作使用参数 --max-records
列出与您的账户关联的最多 20 个备份。忽略参数 --max-records
最多可列出 50 个备份。
aws elasticache describe-serverless-cache-snapshots --max-records
20
以下操作使用参数 --serverless-cache-name
,以仅列出与缓存 my-cache
关联的备份。
aws elasticache describe-serverless-cache-snapshots --serverless-cache-name
my-cache
以下操作使用参数 --serverless-cache-snapshot-name
显示备份 my-backup
的详细信息。
aws elasticache describe-serverless-cache-snapshots --serverless-cache-snapshot-name
my-backup
有关更多信息,请参阅《AWS CLI Command Reference》中的 describe-serverless-cache-snapshots。
要显示自行设计集群的备份列表以及(可选)特定备份的详细信息,请使用 describe-snapshots
CLI 操作。
示例
以下操作使用参数 --max-records
列出与您的账户关联的最多 20 个备份。忽略参数 --max-records
最多可列出 50 个备份。
aws elasticache describe-snapshots --max-records
20
以下操作使用参数 --cache-cluster-id
仅列出与集群 my-cluster
关联的备份。
aws elasticache describe-snapshots --cache-cluster-id
my-cluster
以下操作使用参数 --snapshot-name
显示备份 my-backup
的详细信息。
aws elasticache describe-snapshots --snapshot-name
my-backup
有关更多信息,请参阅 AWS CLI 命令参考中的 describe-snapshots。