Forrest logo
back to the aws tool

aws-backup:tldr:a7769

aws-backup: Delete a specific backup plan.
$ aws backup delete-backup-plan --backup-plan-id ${id}
try on your machine

The command "aws backup delete-backup-plan --backup-plan-id ${id}" is an AWS CLI command used to delete a backup plan in AWS Backup.

Here's what each part of the command means:

  • "aws backup": This is the AWS CLI command for AWS Backup. It allows you to manage AWS Backup resources and operations.
  • "delete-backup-plan": This sub-command is used to delete a backup plan.
  • "--backup-plan-id ${id}": This option specifies the ID of the backup plan you want to delete. The "${id}" is a placeholder for a variable or actual ID that you need to provide. You should replace "${id}" with the ID of the backup plan you want to delete.

Overall, this command enables you to delete a backup plan in AWS Backup by specifying the backup plan ID.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the aws tool