[][src]Struct rusoto_secretsmanager::RotationRulesType

pub struct RotationRulesType {
    pub automatically_after_days: Option<i64>,
}

A structure that defines the rotation configuration for the secret.

Fields

automatically_after_days: Option<i64>

Specifies the number of days between automatic scheduled rotations of the secret.

Secrets Manager schedules the next rotation when the previous one is complete. Secrets Manager schedules the date by adding the rotation interval (number of days) to the actual date of the last rotation. The service chooses the hour within that 24-hour date window randomly. The minute is also chosen somewhat randomly, but weighted towards the top of the hour and influenced by a variety of factors that help distribute load.

Trait Implementations

impl Clone for RotationRulesType[src]

impl Debug for RotationRulesType[src]

impl Default for RotationRulesType[src]

impl<'de> Deserialize<'de> for RotationRulesType[src]

impl PartialEq<RotationRulesType> for RotationRulesType[src]

impl Serialize for RotationRulesType[src]

impl StructuralPartialEq for RotationRulesType[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.