pub struct RecoveryPointCreator {
pub backup_plan_arn: Option<String>,
pub backup_plan_id: Option<String>,
pub backup_plan_version: Option<String>,
pub backup_rule_id: Option<String>,
}
Expand description
Contains information about the backup plan and rule that AWS Backup used to initiate the recovery point backup.
Fields§
§backup_plan_arn: Option<String>
An Amazon Resource Name (ARN) that uniquely identifies a backup plan; for example, arn:aws:backup:us-east-1:123456789012:plan:8F81F553-3A74-4A3F-B93D-B3360DC80C50
.
backup_plan_id: Option<String>
Uniquely identifies a backup plan.
backup_plan_version: Option<String>
Version IDs are unique, randomly generated, Unicode, UTF-8 encoded strings that are at most 1,024 bytes long. They cannot be edited.
backup_rule_id: Option<String>
Uniquely identifies a rule used to schedule the backup of a selection of resources.
Trait Implementations§
Source§impl Clone for RecoveryPointCreator
impl Clone for RecoveryPointCreator
Source§fn clone(&self) -> RecoveryPointCreator
fn clone(&self) -> RecoveryPointCreator
Returns a duplicate 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 RecoveryPointCreator
impl Debug for RecoveryPointCreator
Source§impl Default for RecoveryPointCreator
impl Default for RecoveryPointCreator
Source§fn default() -> RecoveryPointCreator
fn default() -> RecoveryPointCreator
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecoveryPointCreator
impl<'de> Deserialize<'de> for RecoveryPointCreator
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 RecoveryPointCreator
impl PartialEq for RecoveryPointCreator
impl StructuralPartialEq for RecoveryPointCreator
Auto Trait Implementations§
impl Freeze for RecoveryPointCreator
impl RefUnwindSafe for RecoveryPointCreator
impl Send for RecoveryPointCreator
impl Sync for RecoveryPointCreator
impl Unpin for RecoveryPointCreator
impl UnwindSafe for RecoveryPointCreator
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