[][src]Struct rusoto_backup::CopyJob

pub struct CopyJob {
    pub backup_size_in_bytes: Option<i64>,
    pub completion_date: Option<f64>,
    pub copy_job_id: Option<String>,
    pub created_by: Option<RecoveryPointCreator>,
    pub creation_date: Option<f64>,
    pub destination_backup_vault_arn: Option<String>,
    pub destination_recovery_point_arn: Option<String>,
    pub iam_role_arn: Option<String>,
    pub resource_arn: Option<String>,
    pub resource_type: Option<String>,
    pub source_backup_vault_arn: Option<String>,
    pub source_recovery_point_arn: Option<String>,
    pub state: Option<String>,
    pub status_message: Option<String>,
}

Contains detailed information about a copy job.

Fields

backup_size_in_bytes: Option<i64>

The size, in bytes, of a copy job.

completion_date: Option<f64>

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.

copy_job_id: Option<String>

Uniquely identifies a copy job.

created_by: Option<RecoveryPointCreator>creation_date: Option<f64>

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.

destination_backup_vault_arn: Option<String>

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

destination_recovery_point_arn: Option<String>

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.

iam_role_arn: Option<String>

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

resource_arn: Option<String>

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

resource_type: Option<String>

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

source_backup_vault_arn: Option<String>

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

source_recovery_point_arn: Option<String>

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: Option<String>

The current state of a copy job.

status_message: Option<String>

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

Trait Implementations

impl Clone for CopyJob[src]

impl Debug for CopyJob[src]

impl Default for CopyJob[src]

impl<'de> Deserialize<'de> for CopyJob[src]

impl PartialEq<CopyJob> for CopyJob[src]

impl StructuralPartialEq for CopyJob[src]

Auto Trait Implementations

impl RefUnwindSafe for CopyJob

impl Send for CopyJob

impl Sync for CopyJob

impl Unpin for CopyJob

impl UnwindSafe for CopyJob

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.