Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CopyJob

import type { CopyJob } from "https://aws-api.deno.dev/v0.3/services/backup.ts?docs=full";

Contains detailed information about a copy job.

interface CopyJob {
AccountId?: string | null;
BackupSizeInBytes?: number | null;
CompletionDate?: Date | number | null;
CopyJobId?: string | null;
CreatedBy?: RecoveryPointCreator | null;
CreationDate?: Date | number | null;
DestinationBackupVaultArn?: string | null;
DestinationRecoveryPointArn?: string | null;
IamRoleArn?: string | null;
ResourceArn?: string | null;
ResourceType?: string | null;
SourceBackupVaultArn?: string | null;
SourceRecoveryPointArn?: string | null;
State?: CopyJobState | null;
StatusMessage?: string | null;
}

§Properties

§
AccountId?: string | null
[src]

The account ID that owns the copy job.

§
BackupSizeInBytes?: number | null
[src]

The size, in bytes, of a copy job.

§
CompletionDate?: Date | number | null
[src]

The date and time a copy job is completed, in Unix format and Coordinated Universal Time (UTC). The value of CompletionDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

§
CopyJobId?: string | null
[src]

Uniquely identifies a copy job.

§
CreatedBy?: RecoveryPointCreator | null
[src]
§
CreationDate?: Date | number | null
[src]

The date and time a copy job is created, in Unix format and Coordinated Universal Time (UTC). The value of CreationDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

§
DestinationBackupVaultArn?: string | null
[src]

An Amazon Resource Name (ARN) that uniquely identifies a destination copy vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.

§
DestinationRecoveryPointArn?: string | null
[src]

An ARN that uniquely identifies a destination recovery point; for example, arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45.

§
IamRoleArn?: string | null
[src]

Specifies the IAM role ARN used to copy the target recovery point; for example, arn:aws:iam::123456789012:role/S3Access.

§
ResourceArn?: string | null
[src]

The Amazon Web Services resource to be copied; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database.

§
ResourceType?: string | null
[src]

The type of Amazon Web Services resource to be copied; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database.

§
SourceBackupVaultArn?: string | null
[src]

An Amazon Resource Name (ARN) that uniquely identifies a source copy vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.

§
SourceRecoveryPointArn?: string | null
[src]

An ARN that uniquely identifies a source recovery point; for example, arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45.

§
State?: CopyJobState | null
[src]

The current state of a copy job.

§
StatusMessage?: string | null
[src]

A detailed message explaining the status of the job to copy a resource.