描述備份 - Amazon ElastiCache

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

描述備份

下列程序說明如何顯示您的備份清單。如果您需要,也可以檢視特定備份的詳細資訊。

使用 顯示備份 AWS Management Console
  1. 登入 AWS Management Console 並在 https://console.aws.amazon.com/elasticache/開啟 ElastiCache 主控台。

  2. 從導覽窗格,選擇 Backups (備份)

  3. 若要查看特定備份的詳細資訊,請選擇備份名稱左側的方塊。

若要顯示無伺服器備份的清單,以及特定備份的選擇性詳細資訊,請使用 describe-serverless-cache-snapshotsCLI操作。

範例

下列操作使用參數 --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 命令參考describe-serverless-cache-snapshots中的 。

若要顯示自行設計的叢集備份清單,以及特定備份的選擇性詳細資訊,請使用 describe-snapshotsCLI操作。

範例

下列操作使用參數 --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