Struct aws_sdk_backup::types::RecoveryPointMember
source · #[non_exhaustive]pub struct RecoveryPointMember {
pub recovery_point_arn: Option<String>,
pub resource_arn: Option<String>,
pub resource_type: Option<String>,
pub backup_vault_name: Option<String>,
}
Expand description
This is a recovery point which is a child (nested) recovery point of a parent (composite) recovery point. These recovery points can be disassociated from their parent (composite) recovery point, in which case they will no longer be a member.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.recovery_point_arn: Option<String>
This is the Amazon Resource Name (ARN) of the parent (composite) recovery point.
resource_arn: Option<String>
This is the Amazon Resource Name (ARN) that uniquely identifies a saved resource.
resource_type: Option<String>
This is the Amazon Web Services resource type that is saved as a recovery point.
backup_vault_name: Option<String>
This is the name of the backup vault (the logical container in which backups are stored).
Implementations§
source§impl RecoveryPointMember
impl RecoveryPointMember
sourcepub fn recovery_point_arn(&self) -> Option<&str>
pub fn recovery_point_arn(&self) -> Option<&str>
This is the Amazon Resource Name (ARN) of the parent (composite) recovery point.
sourcepub fn resource_arn(&self) -> Option<&str>
pub fn resource_arn(&self) -> Option<&str>
This is the Amazon Resource Name (ARN) that uniquely identifies a saved resource.
sourcepub fn resource_type(&self) -> Option<&str>
pub fn resource_type(&self) -> Option<&str>
This is the Amazon Web Services resource type that is saved as a recovery point.
sourcepub fn backup_vault_name(&self) -> Option<&str>
pub fn backup_vault_name(&self) -> Option<&str>
This is the name of the backup vault (the logical container in which backups are stored).
source§impl RecoveryPointMember
impl RecoveryPointMember
sourcepub fn builder() -> RecoveryPointMemberBuilder
pub fn builder() -> RecoveryPointMemberBuilder
Creates a new builder-style object to manufacture RecoveryPointMember
.
Trait Implementations§
source§impl Clone for RecoveryPointMember
impl Clone for RecoveryPointMember
source§fn clone(&self) -> RecoveryPointMember
fn clone(&self) -> RecoveryPointMember
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RecoveryPointMember
impl Debug for RecoveryPointMember
source§impl PartialEq for RecoveryPointMember
impl PartialEq for RecoveryPointMember
source§fn eq(&self, other: &RecoveryPointMember) -> bool
fn eq(&self, other: &RecoveryPointMember) -> bool
self
and other
values to be equal, and is used
by ==
.