#[non_exhaustive]pub struct AwsBackupBackupPlanDetails {
pub backup_plan: Option<AwsBackupBackupPlanBackupPlanDetails>,
pub backup_plan_arn: Option<String>,
pub backup_plan_id: Option<String>,
pub version_id: Option<String>,
}
Expand description
Provides details about an Backup backup plan and an array of BackupRule
objects, each of which specifies a backup rule.
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.backup_plan: Option<AwsBackupBackupPlanBackupPlanDetails>
Uniquely identifies the backup plan to be associated with the selection of resources.
backup_plan_arn: Option<String>
An Amazon Resource Name (ARN) that uniquely identifies the backup plan.
backup_plan_id: Option<String>
A unique ID for the backup plan.
version_id: Option<String>
Unique, randomly generated, Unicode, UTF-8 encoded strings. Version IDs cannot be edited.
Implementations§
source§impl AwsBackupBackupPlanDetails
impl AwsBackupBackupPlanDetails
sourcepub fn backup_plan(&self) -> Option<&AwsBackupBackupPlanBackupPlanDetails>
pub fn backup_plan(&self) -> Option<&AwsBackupBackupPlanBackupPlanDetails>
Uniquely identifies the backup plan to be associated with the selection of resources.
sourcepub fn backup_plan_arn(&self) -> Option<&str>
pub fn backup_plan_arn(&self) -> Option<&str>
An Amazon Resource Name (ARN) that uniquely identifies the backup plan.
sourcepub fn backup_plan_id(&self) -> Option<&str>
pub fn backup_plan_id(&self) -> Option<&str>
A unique ID for the backup plan.
sourcepub fn version_id(&self) -> Option<&str>
pub fn version_id(&self) -> Option<&str>
Unique, randomly generated, Unicode, UTF-8 encoded strings. Version IDs cannot be edited.
source§impl AwsBackupBackupPlanDetails
impl AwsBackupBackupPlanDetails
sourcepub fn builder() -> AwsBackupBackupPlanDetailsBuilder
pub fn builder() -> AwsBackupBackupPlanDetailsBuilder
Creates a new builder-style object to manufacture AwsBackupBackupPlanDetails
.
Trait Implementations§
source§impl Clone for AwsBackupBackupPlanDetails
impl Clone for AwsBackupBackupPlanDetails
source§fn clone(&self) -> AwsBackupBackupPlanDetails
fn clone(&self) -> AwsBackupBackupPlanDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AwsBackupBackupPlanDetails
impl Debug for AwsBackupBackupPlanDetails
source§impl PartialEq for AwsBackupBackupPlanDetails
impl PartialEq for AwsBackupBackupPlanDetails
source§fn eq(&self, other: &AwsBackupBackupPlanDetails) -> bool
fn eq(&self, other: &AwsBackupBackupPlanDetails) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsBackupBackupPlanDetails
Auto Trait Implementations§
impl Freeze for AwsBackupBackupPlanDetails
impl RefUnwindSafe for AwsBackupBackupPlanDetails
impl Send for AwsBackupBackupPlanDetails
impl Sync for AwsBackupBackupPlanDetails
impl Unpin for AwsBackupBackupPlanDetails
impl UnwindSafe for AwsBackupBackupPlanDetails
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> 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