HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

aws backup — Unified backup service designed to protect Amazon Web Services services and their associated data. M

Submitted by: @import:tldr-pages··
0
Viewed 0 times
backupunifiedcommandprotectaws backupdesignedcliservice

Problem

How to use the aws backup command: Unified backup service designed to protect Amazon Web Services services and their associated data. More information: <https://docs.aws.amazon.com/cli/latest/reference/backup/>.

Solution

aws backup — Unified backup service designed to protect Amazon Web Services services and their associated data. More information: <https://docs.aws.amazon.com/cli/latest/reference/backup/>.

Return BackupPlan details for a specific BackupPlanId:
aws backup get-backup-plan --backup-plan-id {{id}}


Create a backup plan using a specific backup plan name and backup rules:
aws backup create-backup-plan --backup-plan {{plan}}


Delete a specific backup plan:
aws backup delete-backup-plan --backup-plan-id {{id}}


List all active backup plans for the current account:
aws backup list-backup-plans


Display details about your report jobs:
aws backup list-report-jobs

Code Snippets

Return BackupPlan details for a specific BackupPlanId

aws backup get-backup-plan --backup-plan-id {{id}}

Create a backup plan using a specific backup plan name and backup rules

aws backup create-backup-plan --backup-plan {{plan}}

Delete a specific backup plan

aws backup delete-backup-plan --backup-plan-id {{id}}

List all active backup plans for the current account

aws backup list-backup-plans

Display details about your report jobs

aws backup list-report-jobs

Context

tldr-pages: common/aws backup

Revisions (0)

No revisions yet.