[][src]Struct rusoto_cloudhsmv2::CopyBackupToRegionResponse

pub struct CopyBackupToRegionResponse {
    pub destination_backup: Option<DestinationBackup>,
}

Fields

destination_backup: Option<DestinationBackup>

Information on the backup that will be copied to the destination region, including CreateTimestamp, SourceBackup, SourceCluster, and Source Region. CreateTimestamp of the destination backup will be the same as that of the source backup.

You will need to use the sourceBackupID returned in this operation to use the DescribeBackups operation on the backup that will be copied to the destination region.

Trait Implementations

impl Clone for CopyBackupToRegionResponse[src]

impl Debug for CopyBackupToRegionResponse[src]

impl Default for CopyBackupToRegionResponse[src]

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

impl PartialEq<CopyBackupToRegionResponse> for CopyBackupToRegionResponse[src]

impl StructuralPartialEq for CopyBackupToRegionResponse[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.