#[non_exhaustive]pub struct AwsBackupBackupPlanDetailsBuilder { /* private fields */ }Expand description
A builder for AwsBackupBackupPlanDetails.
Implementations§
source§impl AwsBackupBackupPlanDetailsBuilder
impl AwsBackupBackupPlanDetailsBuilder
sourcepub fn backup_plan(self, input: AwsBackupBackupPlanBackupPlanDetails) -> Self
pub fn backup_plan(self, input: AwsBackupBackupPlanBackupPlanDetails) -> Self
Uniquely identifies the backup plan to be associated with the selection of resources.
sourcepub fn set_backup_plan(
self,
input: Option<AwsBackupBackupPlanBackupPlanDetails>,
) -> Self
pub fn set_backup_plan( self, input: Option<AwsBackupBackupPlanBackupPlanDetails>, ) -> Self
Uniquely identifies the backup plan to be associated with the selection of resources.
sourcepub fn get_backup_plan(&self) -> &Option<AwsBackupBackupPlanBackupPlanDetails>
pub fn get_backup_plan(&self) -> &Option<AwsBackupBackupPlanBackupPlanDetails>
Uniquely identifies the backup plan to be associated with the selection of resources.
sourcepub fn backup_plan_arn(self, input: impl Into<String>) -> Self
pub fn backup_plan_arn(self, input: impl Into<String>) -> Self
An Amazon Resource Name (ARN) that uniquely identifies the backup plan.
sourcepub fn set_backup_plan_arn(self, input: Option<String>) -> Self
pub fn set_backup_plan_arn(self, input: Option<String>) -> Self
An Amazon Resource Name (ARN) that uniquely identifies the backup plan.
sourcepub fn get_backup_plan_arn(&self) -> &Option<String>
pub fn get_backup_plan_arn(&self) -> &Option<String>
An Amazon Resource Name (ARN) that uniquely identifies the backup plan.
sourcepub fn backup_plan_id(self, input: impl Into<String>) -> Self
pub fn backup_plan_id(self, input: impl Into<String>) -> Self
A unique ID for the backup plan.
sourcepub fn set_backup_plan_id(self, input: Option<String>) -> Self
pub fn set_backup_plan_id(self, input: Option<String>) -> Self
A unique ID for the backup plan.
sourcepub fn get_backup_plan_id(&self) -> &Option<String>
pub fn get_backup_plan_id(&self) -> &Option<String>
A unique ID for the backup plan.
sourcepub fn version_id(self, input: impl Into<String>) -> Self
pub fn version_id(self, input: impl Into<String>) -> Self
Unique, randomly generated, Unicode, UTF-8 encoded strings. Version IDs cannot be edited.
sourcepub fn set_version_id(self, input: Option<String>) -> Self
pub fn set_version_id(self, input: Option<String>) -> Self
Unique, randomly generated, Unicode, UTF-8 encoded strings. Version IDs cannot be edited.
sourcepub fn get_version_id(&self) -> &Option<String>
pub fn get_version_id(&self) -> &Option<String>
Unique, randomly generated, Unicode, UTF-8 encoded strings. Version IDs cannot be edited.
sourcepub fn build(self) -> AwsBackupBackupPlanDetails
pub fn build(self) -> AwsBackupBackupPlanDetails
Consumes the builder and constructs a AwsBackupBackupPlanDetails.
Trait Implementations§
source§impl Clone for AwsBackupBackupPlanDetailsBuilder
impl Clone for AwsBackupBackupPlanDetailsBuilder
source§fn clone(&self) -> AwsBackupBackupPlanDetailsBuilder
fn clone(&self) -> AwsBackupBackupPlanDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for AwsBackupBackupPlanDetailsBuilder
impl Default for AwsBackupBackupPlanDetailsBuilder
source§fn default() -> AwsBackupBackupPlanDetailsBuilder
fn default() -> AwsBackupBackupPlanDetailsBuilder
source§impl PartialEq for AwsBackupBackupPlanDetailsBuilder
impl PartialEq for AwsBackupBackupPlanDetailsBuilder
source§fn eq(&self, other: &AwsBackupBackupPlanDetailsBuilder) -> bool
fn eq(&self, other: &AwsBackupBackupPlanDetailsBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AwsBackupBackupPlanDetailsBuilder
Auto Trait Implementations§
impl Freeze for AwsBackupBackupPlanDetailsBuilder
impl RefUnwindSafe for AwsBackupBackupPlanDetailsBuilder
impl Send for AwsBackupBackupPlanDetailsBuilder
impl Sync for AwsBackupBackupPlanDetailsBuilder
impl Unpin for AwsBackupBackupPlanDetailsBuilder
impl UnwindSafe for AwsBackupBackupPlanDetailsBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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