Struct aws_sdk_backup::model::BackupPlanInput [−][src]
#[non_exhaustive]pub struct BackupPlanInput {
pub backup_plan_name: Option<String>,
pub rules: Option<Vec<BackupRuleInput>>,
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.
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. Must contain 1 to 50 alphanumeric or '-_.' characters.
rules: Option<Vec<BackupRuleInput>>
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>>
Specifies a list of BackupOptions
for each resource type. These settings are only available for Windows Volume Shadow Copy Service (VSS) backup jobs.
Implementations
The display name of a backup plan. Must contain 1 to 50 alphanumeric or '-_.' characters.
An array of BackupRule
objects, each of which specifies a scheduled task that is used to back up a selection of resources.
Specifies a list of BackupOptions
for each resource type. These settings are only available for Windows Volume Shadow Copy Service (VSS) backup jobs.
Creates a new builder-style object to manufacture BackupPlanInput
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 BackupPlanInput
impl Send for BackupPlanInput
impl Sync for BackupPlanInput
impl Unpin for BackupPlanInput
impl UnwindSafe for BackupPlanInput
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