#[non_exhaustive]pub struct AwsBackupBackupPlanBackupPlanDetails {
pub backup_plan_name: Option<String>,
pub advanced_backup_settings: Option<Vec<AwsBackupBackupPlanAdvancedBackupSettingsDetails>>,
pub backup_plan_rule: Option<Vec<AwsBackupBackupPlanRuleDetails>>,
}
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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.backup_plan_name: Option<String>
The display name of a backup plan.
advanced_backup_settings: Option<Vec<AwsBackupBackupPlanAdvancedBackupSettingsDetails>>
A list of backup options for each resource type.
backup_plan_rule: Option<Vec<AwsBackupBackupPlanRuleDetails>>
An array of BackupRule
objects, each of which specifies a scheduled task that is used to back up a selection of resources.
Implementations§
source§impl AwsBackupBackupPlanBackupPlanDetails
impl AwsBackupBackupPlanBackupPlanDetails
sourcepub fn backup_plan_name(&self) -> Option<&str>
pub fn backup_plan_name(&self) -> Option<&str>
The display name of a backup plan.
sourcepub fn advanced_backup_settings(
&self
) -> Option<&[AwsBackupBackupPlanAdvancedBackupSettingsDetails]>
pub fn advanced_backup_settings( &self ) -> Option<&[AwsBackupBackupPlanAdvancedBackupSettingsDetails]>
A list of backup options for each resource type.
sourcepub fn backup_plan_rule(&self) -> Option<&[AwsBackupBackupPlanRuleDetails]>
pub fn backup_plan_rule(&self) -> Option<&[AwsBackupBackupPlanRuleDetails]>
An array of BackupRule
objects, each of which specifies a scheduled task that is used to back up a selection of resources.
source§impl AwsBackupBackupPlanBackupPlanDetails
impl AwsBackupBackupPlanBackupPlanDetails
sourcepub fn builder() -> AwsBackupBackupPlanBackupPlanDetailsBuilder
pub fn builder() -> AwsBackupBackupPlanBackupPlanDetailsBuilder
Creates a new builder-style object to manufacture AwsBackupBackupPlanBackupPlanDetails
.
Trait Implementations§
source§impl Clone for AwsBackupBackupPlanBackupPlanDetails
impl Clone for AwsBackupBackupPlanBackupPlanDetails
source§fn clone(&self) -> AwsBackupBackupPlanBackupPlanDetails
fn clone(&self) -> AwsBackupBackupPlanBackupPlanDetails
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<AwsBackupBackupPlanBackupPlanDetails> for AwsBackupBackupPlanBackupPlanDetails
impl PartialEq<AwsBackupBackupPlanBackupPlanDetails> for AwsBackupBackupPlanBackupPlanDetails
source§fn eq(&self, other: &AwsBackupBackupPlanBackupPlanDetails) -> bool
fn eq(&self, other: &AwsBackupBackupPlanBackupPlanDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsBackupBackupPlanBackupPlanDetails
Auto Trait Implementations§
impl RefUnwindSafe for AwsBackupBackupPlanBackupPlanDetails
impl Send for AwsBackupBackupPlanBackupPlanDetails
impl Sync for AwsBackupBackupPlanBackupPlanDetails
impl Unpin for AwsBackupBackupPlanBackupPlanDetails
impl UnwindSafe for AwsBackupBackupPlanBackupPlanDetails
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
Mutably borrows from an owned value. Read more