pub struct CopyAction {
pub destination_backup_vault_arn: String,
pub lifecycle: Option<Lifecycle>,
}
Expand description
The details of the copy operation.
Fields§
§destination_backup_vault_arn: String
An Amazon Resource Name (ARN) that uniquely identifies the destination backup vault for the copied backup. For example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault
.
lifecycle: Option<Lifecycle>
Trait Implementations§
Source§impl Clone for CopyAction
impl Clone for CopyAction
Source§fn clone(&self) -> CopyAction
fn clone(&self) -> CopyAction
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 CopyAction
impl Debug for CopyAction
Source§impl Default for CopyAction
impl Default for CopyAction
Source§fn default() -> CopyAction
fn default() -> CopyAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CopyAction
impl<'de> Deserialize<'de> for CopyAction
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 CopyAction
impl PartialEq for CopyAction
Source§impl Serialize for CopyAction
impl Serialize for CopyAction
impl StructuralPartialEq for CopyAction
Auto Trait Implementations§
impl Freeze for CopyAction
impl RefUnwindSafe for CopyAction
impl Send for CopyAction
impl Sync for CopyAction
impl Unpin for CopyAction
impl UnwindSafe for CopyAction
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