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
impl StructuralPartialEq for RecoveryPointMember
Auto Trait Implementations§
impl Freeze for RecoveryPointMember
impl RefUnwindSafe for RecoveryPointMember
impl Send for RecoveryPointMember
impl Sync for RecoveryPointMember
impl Unpin for RecoveryPointMember
impl UnwindSafe for RecoveryPointMember
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more