[][src]Struct rusoto_cloudhsmv2::CopyBackupToRegionRequest

pub struct CopyBackupToRegionRequest {
    pub backup_id: String,
    pub destination_region: String,
    pub tag_list: Option<Vec<Tag>>,
}

Fields

backup_id: String

The ID of the backup that will be copied to the destination region.

destination_region: String

The AWS region that will contain your copied CloudHSM cluster backup.

tag_list: Option<Vec<Tag>>

Tags to apply to the destination backup during creation. If you specify tags, only these tags will be applied to the destination backup. If you do not specify tags, the service copies tags from the source backup to the destination backup.

Trait Implementations

impl Clone for CopyBackupToRegionRequest[src]

impl Debug for CopyBackupToRegionRequest[src]

impl Default for CopyBackupToRegionRequest[src]

impl PartialEq<CopyBackupToRegionRequest> for CopyBackupToRegionRequest[src]

impl Serialize for CopyBackupToRegionRequest[src]

impl StructuralPartialEq for CopyBackupToRegionRequest[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> 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.