paws.storage (version 0.1.0)

backup_update_backup_plan: Replaces the body of a saved backup plan identified by its backupPlanId with the input document in JSON format

Description

Replaces the body of a saved backup plan identified by its backupPlanId with the input document in JSON format. The new version is uniquely identified by a VersionId.

Usage

backup_update_backup_plan(BackupPlanId, BackupPlan)

Arguments

BackupPlanId

[required] Uniquely identifies a backup plan.

BackupPlan

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

Request syntax

svc$update_backup_plan(
  BackupPlanId = "string",
  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"
        )
      )
    )
  )
)