[][src]Struct rusoto_cloudhsmv2::ModifyBackupAttributesRequest

pub struct ModifyBackupAttributesRequest {
    pub backup_id: String,
    pub never_expires: bool,
}

Fields

backup_id: String

The identifier (ID) of the backup to modify. To find the ID of a backup, use the DescribeBackups operation.

never_expires: bool

Specifies 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

impl Clone for ModifyBackupAttributesRequest[src]

impl Debug for ModifyBackupAttributesRequest[src]

impl Default for ModifyBackupAttributesRequest[src]

impl PartialEq<ModifyBackupAttributesRequest> for ModifyBackupAttributesRequest[src]

impl Serialize for ModifyBackupAttributesRequest[src]

impl StructuralPartialEq for ModifyBackupAttributesRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.