Skip to content

Describe Copy Job

backup_describe_copy_job R Documentation

Returns metadata associated with creating a copy of a resource

Description

Returns metadata associated with creating a copy of a resource.

Usage

backup_describe_copy_job(CopyJobId)

Arguments

CopyJobId

[required] Uniquely identifies a copy job.

Value

A list with the following syntax:

list(
  CopyJob = list(
    AccountId = "string",
    CopyJobId = "string",
    SourceBackupVaultArn = "string",
    SourceRecoveryPointArn = "string",
    DestinationBackupVaultArn = "string",
    DestinationVaultType = "string",
    DestinationVaultLockState = "string",
    DestinationRecoveryPointArn = "string",
    DestinationEncryptionKeyArn = "string",
    DestinationRecoveryPointLifecycle = list(
      MoveToColdStorageAfterDays = 123,
      DeleteAfterDays = 123,
      OptInToArchiveForSupportedResources = TRUE|FALSE,
      DeleteAfterEvent = "DELETE_AFTER_COPY"
    ),
    ResourceArn = "string",
    CreationDate = as.POSIXct(
      "2015-01-01"
    ),
    CompletionDate = as.POSIXct(
      "2015-01-01"
    ),
    State = "CREATED"|"RUNNING"|"COMPLETED"|"FAILED"|"PARTIAL",
    StatusMessage = "string",
    BackupSizeInBytes = 123,
    IamRoleArn = "string",
    CreatedBy = list(
      BackupPlanId = "string",
      BackupPlanArn = "string",
      BackupPlanName = "string",
      BackupPlanVersion = "string",
      BackupRuleId = "string",
      BackupRuleName = "string",
      BackupRuleCron = "string",
      BackupRuleTimezone = "string"
    ),
    CreatedByBackupJobId = "string",
    ResourceType = "string",
    ParentJobId = "string",
    IsParent = TRUE|FALSE,
    CompositeMemberIdentifier = "string",
    NumberOfChildJobs = 123,
    ChildJobsInState = list(
      123
    ),
    ResourceName = "string",
    MessageCategory = "string"
  )
)

Request syntax

svc$describe_copy_job(
  CopyJobId = "string"
)