[][src]Struct rusoto_secretsmanager::GetSecretValueResponse

pub struct GetSecretValueResponse {
    pub arn: Option<String>,
    pub created_date: Option<f64>,
    pub name: Option<String>,
    pub secret_binary: Option<Bytes>,
    pub secret_string: Option<String>,
    pub version_id: Option<String>,
    pub version_stages: Option<Vec<String>>,
}

Fields

arn: Option<String>

The ARN of the secret.

created_date: Option<f64>

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

name: Option<String>

The friendly name of the secret.

secret_binary: Option<Bytes>

The decrypted part of the protected secret information that was originally provided as binary data in the form of a byte array. The response parameter represents the binary data as a base64-encoded string.

This parameter is not used if the secret is created by the Secrets Manager console.

If you store custom information in this field of the secret, then you must code your Lambda rotation function to parse and interpret whatever you store in the SecretString or SecretBinary fields.

secret_string: Option<String>

The decrypted part of the protected secret information that was originally provided as a string.

If you create this secret by using the Secrets Manager console then only the SecretString parameter contains data. Secrets Manager stores the information as a JSON structure of key/value pairs that the Lambda rotation function knows how to parse.

If you store custom information in the secret by using the CreateSecret, UpdateSecret, or PutSecretValue API operations instead of the Secrets Manager console, or by using the Other secret type in the console, then you must code your Lambda rotation function to parse and interpret those values.

version_id: Option<String>

The unique identifier of this version of the secret.

version_stages: Option<Vec<String>>

A list of all of the staging labels currently attached to this version of the secret.

Trait Implementations

impl Clone for GetSecretValueResponse[src]

impl Debug for GetSecretValueResponse[src]

impl Default for GetSecretValueResponse[src]

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

impl PartialEq<GetSecretValueResponse> for GetSecretValueResponse[src]

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