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§
Source§impl Clone for GetRecoveryPointRestoreMetadataOutput
impl Clone for GetRecoveryPointRestoreMetadataOutput
Source§fn clone(&self) -> GetRecoveryPointRestoreMetadataOutput
fn clone(&self) -> GetRecoveryPointRestoreMetadataOutput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for GetRecoveryPointRestoreMetadataOutput
impl Default for GetRecoveryPointRestoreMetadataOutput
Source§fn default() -> GetRecoveryPointRestoreMetadataOutput
fn default() -> GetRecoveryPointRestoreMetadataOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetRecoveryPointRestoreMetadataOutput
impl<'de> Deserialize<'de> for GetRecoveryPointRestoreMetadataOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetRecoveryPointRestoreMetadataOutput
impl PartialEq for GetRecoveryPointRestoreMetadataOutput
Source§fn eq(&self, other: &GetRecoveryPointRestoreMetadataOutput) -> bool
fn eq(&self, other: &GetRecoveryPointRestoreMetadataOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetRecoveryPointRestoreMetadataOutput
Auto Trait Implementations§
impl Freeze for GetRecoveryPointRestoreMetadataOutput
impl RefUnwindSafe for GetRecoveryPointRestoreMetadataOutput
impl Send for GetRecoveryPointRestoreMetadataOutput
impl Sync for GetRecoveryPointRestoreMetadataOutput
impl Unpin for GetRecoveryPointRestoreMetadataOutput
impl UnwindSafe for GetRecoveryPointRestoreMetadataOutput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more