[][src]Struct rusoto_secretsmanager::SecretVersionsListEntry

pub struct SecretVersionsListEntry {
    pub created_date: Option<f64>,
    pub last_accessed_date: Option<f64>,
    pub version_id: Option<String>,
    pub version_stages: Option<Vec<String>>,
}

A structure that contains information about one version of a secret.

Fields

created_date: Option<f64>

The date and time this version of the secret was created.

last_accessed_date: Option<f64>

The date that this version of the secret was last accessed. Note that the resolution of this field is at the date level and does not include the time.

version_id: Option<String>

The unique version identifier of this version of the secret.

version_stages: Option<Vec<String>>

An array of staging labels that are currently associated with this version of the secret.

Trait Implementations

impl Clone for SecretVersionsListEntry[src]

impl Debug for SecretVersionsListEntry[src]

impl Default for SecretVersionsListEntry[src]

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

impl PartialEq<SecretVersionsListEntry> for SecretVersionsListEntry[src]

impl StructuralPartialEq for SecretVersionsListEntry[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.