[][src]Struct rusoto_backup::StartCopyJobInput

pub struct StartCopyJobInput {
    pub destination_backup_vault_arn: String,
    pub iam_role_arn: String,
    pub idempotency_token: Option<String>,
    pub lifecycle: Option<Lifecycle>,
    pub recovery_point_arn: String,
    pub source_backup_vault_name: String,
}

Fields

destination_backup_vault_arn: String

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

iam_role_arn: String

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

idempotency_token: Option<String>

A customer chosen string that can be used to distinguish between calls to StartCopyJob.

lifecycle: Option<Lifecycle>recovery_point_arn: String

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

source_backup_vault_name: String

The name of a logical source container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the AWS Region where they are created. They consist of lowercase letters, numbers, and hyphens.

Trait Implementations

impl Clone for StartCopyJobInput[src]

impl Debug for StartCopyJobInput[src]

impl Default for StartCopyJobInput[src]

impl PartialEq<StartCopyJobInput> for StartCopyJobInput[src]

impl Serialize for StartCopyJobInput[src]

impl StructuralPartialEq for StartCopyJobInput[src]

Auto Trait Implementations

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> From<T> for T[src]

impl<T> Instrument 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> 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.