pub struct ModifyBackupAttributesRequest {
pub backup_id: String,
pub never_expires: bool,
}Fields§
§backup_id: StringThe identifier (ID) of the backup to modify. To find the ID of a backup, use the DescribeBackups operation.
never_expires: boolSpecifies whether the service should exempt a backup from the retention policy for the cluster. True exempts a backup from the retention policy. False means the service applies the backup retention policy defined at the cluster.
Trait Implementations§
Source§impl Clone for ModifyBackupAttributesRequest
impl Clone for ModifyBackupAttributesRequest
Source§fn clone(&self) -> ModifyBackupAttributesRequest
fn clone(&self) -> ModifyBackupAttributesRequest
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 Default for ModifyBackupAttributesRequest
impl Default for ModifyBackupAttributesRequest
Source§fn default() -> ModifyBackupAttributesRequest
fn default() -> ModifyBackupAttributesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyBackupAttributesRequest
impl PartialEq for ModifyBackupAttributesRequest
Source§fn eq(&self, other: &ModifyBackupAttributesRequest) -> bool
fn eq(&self, other: &ModifyBackupAttributesRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModifyBackupAttributesRequest
Auto Trait Implementations§
impl Freeze for ModifyBackupAttributesRequest
impl RefUnwindSafe for ModifyBackupAttributesRequest
impl Send for ModifyBackupAttributesRequest
impl Sync for ModifyBackupAttributesRequest
impl Unpin for ModifyBackupAttributesRequest
impl UnwindSafe for ModifyBackupAttributesRequest
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