pub struct BackupPlan {
pub backup_plan_name: String,
pub rules: Vec<BackupRule>,
}
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 display name of a backup plan.
rules: Vec<BackupRule>
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 BackupPlan
impl Clone for BackupPlan
Source§fn clone(&self) -> BackupPlan
fn clone(&self) -> BackupPlan
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 BackupPlan
impl Debug for BackupPlan
Source§impl Default for BackupPlan
impl Default for BackupPlan
Source§fn default() -> BackupPlan
fn default() -> BackupPlan
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BackupPlan
impl<'de> Deserialize<'de> for BackupPlan
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BackupPlan
impl PartialEq for BackupPlan
impl StructuralPartialEq for BackupPlan
Auto Trait Implementations§
impl Freeze for BackupPlan
impl RefUnwindSafe for BackupPlan
impl Send for BackupPlan
impl Sync for BackupPlan
impl Unpin for BackupPlan
impl UnwindSafe for BackupPlan
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