Struct aws_sdk_backup::model::BackupPlan [−][src]
#[non_exhaustive]pub struct BackupPlan {
pub backup_plan_name: Option<String>,
pub rules: Option<Vec<BackupRule>>,
pub advanced_backup_settings: Option<Vec<AdvancedBackupSetting>>,
}
Expand description
Contains an optional backup plan display name and an array of BackupRule
objects, each of which specifies a backup rule. Each rule in a backup plan is a separate
scheduled task and can back up a different selection of Amazon Web Services
resources.
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_name: Option<String>
The display name of a backup plan.
rules: Option<Vec<BackupRule>>
An array of BackupRule
objects, each of which specifies a scheduled task
that is used to back up a selection of resources.
advanced_backup_settings: Option<Vec<AdvancedBackupSetting>>
Contains a list of BackupOptions
for each resource type.
Implementations
Creates a new builder-style object to manufacture BackupPlan
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for BackupPlan
impl Send for BackupPlan
impl Sync for BackupPlan
impl Unpin for BackupPlan
impl UnwindSafe for BackupPlan
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more