[][src]Struct rusoto_secretsmanager::PutSecretValueResponse

pub struct PutSecretValueResponse {
    pub arn: Option<String>,
    pub name: Option<String>,
    pub version_id: Option<String>,
    pub version_stages: Option<Vec<String>>,
}

Fields

arn: Option<String>

The Amazon Resource Name (ARN) for the secret for which you just created a version.

name: Option<String>

The friendly name of the secret for which you just created or updated a version.

version_id: Option<String>

The unique identifier of the version of the secret you just created or updated.

version_stages: Option<Vec<String>>

The list of staging labels that are currently attached to this version of the secret. Staging labels are used to track a version as it progresses through the secret rotation process.

Trait Implementations

impl Clone for PutSecretValueResponse[src]

impl Debug for PutSecretValueResponse[src]

impl Default for PutSecretValueResponse[src]

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

impl PartialEq<PutSecretValueResponse> for PutSecretValueResponse[src]

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