pub struct BackupPlanInput {
pub backup_plan_name: String,
pub rules: Vec<BackupRuleInput>,
}
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 AWS resources.
Fields§
§backup_plan_name: String
The optional display name of a backup plan.
rules: Vec<BackupRuleInput>
An array of BackupRule
objects, each of which specifies a scheduled task that is used to back up a selection of resources.
Trait Implementations§
Source§impl Clone for BackupPlanInput
impl Clone for BackupPlanInput
Source§fn clone(&self) -> BackupPlanInput
fn clone(&self) -> BackupPlanInput
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 Debug for BackupPlanInput
impl Debug for BackupPlanInput
Source§impl Default for BackupPlanInput
impl Default for BackupPlanInput
Source§fn default() -> BackupPlanInput
fn default() -> BackupPlanInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for BackupPlanInput
impl PartialEq for BackupPlanInput
Source§impl Serialize for BackupPlanInput
impl Serialize for BackupPlanInput
impl StructuralPartialEq for BackupPlanInput
Auto Trait Implementations§
impl Freeze for BackupPlanInput
impl RefUnwindSafe for BackupPlanInput
impl Send for BackupPlanInput
impl Sync for BackupPlanInput
impl Unpin for BackupPlanInput
impl UnwindSafe for BackupPlanInput
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