Struct aws_sdk_backup::types::builders::RecoveryPointMemberBuilder
source · #[non_exhaustive]pub struct RecoveryPointMemberBuilder { /* private fields */ }
Expand description
A builder for RecoveryPointMember
.
Implementations§
source§impl RecoveryPointMemberBuilder
impl RecoveryPointMemberBuilder
sourcepub fn recovery_point_arn(self, input: impl Into<String>) -> Self
pub fn recovery_point_arn(self, input: impl Into<String>) -> Self
This is the Amazon Resource Name (ARN) of the parent (composite) recovery point.
sourcepub fn set_recovery_point_arn(self, input: Option<String>) -> Self
pub fn set_recovery_point_arn(self, input: Option<String>) -> Self
This is the Amazon Resource Name (ARN) of the parent (composite) recovery point.
sourcepub fn get_recovery_point_arn(&self) -> &Option<String>
pub fn get_recovery_point_arn(&self) -> &Option<String>
This is the Amazon Resource Name (ARN) of the parent (composite) recovery point.
sourcepub fn resource_arn(self, input: impl Into<String>) -> Self
pub fn resource_arn(self, input: impl Into<String>) -> Self
This is the Amazon Resource Name (ARN) that uniquely identifies a saved resource.
sourcepub fn set_resource_arn(self, input: Option<String>) -> Self
pub fn set_resource_arn(self, input: Option<String>) -> Self
This is the Amazon Resource Name (ARN) that uniquely identifies a saved resource.
sourcepub fn get_resource_arn(&self) -> &Option<String>
pub fn get_resource_arn(&self) -> &Option<String>
This is the Amazon Resource Name (ARN) that uniquely identifies a saved resource.
sourcepub fn resource_type(self, input: impl Into<String>) -> Self
pub fn resource_type(self, input: impl Into<String>) -> Self
This is the Amazon Web Services resource type that is saved as a recovery point.
sourcepub fn set_resource_type(self, input: Option<String>) -> Self
pub fn set_resource_type(self, input: Option<String>) -> Self
This is the Amazon Web Services resource type that is saved as a recovery point.
sourcepub fn get_resource_type(&self) -> &Option<String>
pub fn get_resource_type(&self) -> &Option<String>
This is the Amazon Web Services resource type that is saved as a recovery point.
sourcepub fn backup_vault_name(self, input: impl Into<String>) -> Self
pub fn backup_vault_name(self, input: impl Into<String>) -> Self
This is the name of the backup vault (the logical container in which backups are stored).
sourcepub fn set_backup_vault_name(self, input: Option<String>) -> Self
pub fn set_backup_vault_name(self, input: Option<String>) -> Self
This is the name of the backup vault (the logical container in which backups are stored).
sourcepub fn get_backup_vault_name(&self) -> &Option<String>
pub fn get_backup_vault_name(&self) -> &Option<String>
This is the name of the backup vault (the logical container in which backups are stored).
sourcepub fn build(self) -> RecoveryPointMember
pub fn build(self) -> RecoveryPointMember
Consumes the builder and constructs a RecoveryPointMember
.
Trait Implementations§
source§impl Clone for RecoveryPointMemberBuilder
impl Clone for RecoveryPointMemberBuilder
source§fn clone(&self) -> RecoveryPointMemberBuilder
fn clone(&self) -> RecoveryPointMemberBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RecoveryPointMemberBuilder
impl Debug for RecoveryPointMemberBuilder
source§impl Default for RecoveryPointMemberBuilder
impl Default for RecoveryPointMemberBuilder
source§fn default() -> RecoveryPointMemberBuilder
fn default() -> RecoveryPointMemberBuilder
impl StructuralPartialEq for RecoveryPointMemberBuilder
Auto Trait Implementations§
impl Freeze for RecoveryPointMemberBuilder
impl RefUnwindSafe for RecoveryPointMemberBuilder
impl Send for RecoveryPointMemberBuilder
impl Sync for RecoveryPointMemberBuilder
impl Unpin for RecoveryPointMemberBuilder
impl UnwindSafe for RecoveryPointMemberBuilder
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