[][src]Struct rusoto_backup::GetRecoveryPointRestoreMetadataOutput

pub struct GetRecoveryPointRestoreMetadataOutput {
    pub backup_vault_arn: Option<String>,
    pub recovery_point_arn: Option<String>,
    pub restore_metadata: Option<HashMap<String, String>>,
}

Fields

backup_vault_arn: Option<String>

An ARN that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.

recovery_point_arn: Option<String>

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

restore_metadata: Option<HashMap<String, String>>

The set of metadata key-value pairs that describes the original configuration of the backed-up resource. These values vary depending on the service that is being restored.

Trait Implementations

impl Clone for GetRecoveryPointRestoreMetadataOutput[src]

impl Debug for GetRecoveryPointRestoreMetadataOutput[src]

impl Default for GetRecoveryPointRestoreMetadataOutput[src]

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

impl PartialEq<GetRecoveryPointRestoreMetadataOutput> for GetRecoveryPointRestoreMetadataOutput[src]

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