paws.storage (version 0.1.0)

backup_create_backup_plan: Backup plans are documents that contain information that AWS Backup uses to schedule tasks that create recovery points of resources

Description

Backup plans are documents that contain information that AWS Backup uses to schedule tasks that create recovery points of resources.

Usage

backup_create_backup_plan(BackupPlan, BackupPlanTags, CreatorRequestId)

Arguments

BackupPlan

[required] Specifies the body of a backup plan. Includes a BackupPlanName and one or more sets of Rules.

BackupPlanTags

To help organize your resources, you can assign your own metadata to the resources that you create. Each tag is a key-value pair. The specified tags are assigned to all backups created with this plan.

CreatorRequestId

Identifies the request and allows failed requests to be retried without the risk of executing the operation twice. If the request includes a CreatorRequestId that matches an existing backup plan, that plan is returned. This parameter is optional.

Request syntax

svc$create_backup_plan(
  BackupPlan = list(
    BackupPlanName = "string",
    Rules = list(
      list(
        RuleName = "string",
        TargetBackupVaultName = "string",
        ScheduleExpression = "string",
        StartWindowMinutes = 123,
        CompletionWindowMinutes = 123,
        Lifecycle = list(
          MoveToColdStorageAfterDays = 123,
          DeleteAfterDays = 123
        ),
        RecoveryPointTags = list(
          "string"
        )
      )
    )
  ),
  BackupPlanTags = list(
    "string"
  ),
  CreatorRequestId = "string"
)

Details

If you call CreateBackupPlan with a plan that already exists, the existing backupPlanId is returned.