Learn R Programming

paws.storage (version 0.1.12)

backup_get_backup_plan_from_json: Returns a valid JSON document specifying a backup plan or an error

Description

Returns a valid JSON document specifying a backup plan or an error.

Usage

backup_get_backup_plan_from_json(BackupPlanTemplateJson)

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"
        )
      )
    )
  )
)

Arguments

BackupPlanTemplateJson

[required] A customer-supplied backup plan document in JSON format.

Request syntax

svc$get_backup_plan_from_json(
  BackupPlanTemplateJson = "string"
)