Learn R Programming

paws.storage (version 0.1.12)

backup_get_backup_plan: Returns BackupPlan details for the specified BackupPlanId

Description

Returns BackupPlan details for the specified BackupPlanId. Returns the body of a backup plan in JSON format, in addition to plan metadata.

Usage

backup_get_backup_plan(BackupPlanId, VersionId)

Value

A list with the following syntax:

list(
  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"
        ),
        RuleId = "string",
        CopyActions = list(
          list(
            Lifecycle = list(
              MoveToColdStorageAfterDays = 123,
              DeleteAfterDays = 123
            ),
            DestinationBackupVaultArn = "string"
          )
        )
      )
    ),
    AdvancedBackupSettings = list(
      list(
        ResourceType = "string",
        BackupOptions = list(
          "string"
        )
      )
    )
  ),
  BackupPlanId = "string",
  BackupPlanArn = "string",
  VersionId = "string",
  CreatorRequestId = "string",
  CreationDate = as.POSIXct(
    "2015-01-01"
  ),
  DeletionDate = as.POSIXct(
    "2015-01-01"
  ),
  LastExecutionDate = as.POSIXct(
    "2015-01-01"
  ),
  AdvancedBackupSettings = list(
    list(
      ResourceType = "string",
      BackupOptions = list(
        "string"
      )
    )
  )
)

Arguments

BackupPlanId

[required] Uniquely identifies a backup plan.

VersionId

Unique, randomly generated, Unicode, UTF-8 encoded strings that are at most 1,024 bytes long. Version IDs cannot be edited.

Request syntax

svc$get_backup_plan(
  BackupPlanId = "string",
  VersionId = "string"
)