[−][src]Struct rusoto_secretsmanager::GetSecretValueResponse
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 PartialEq<GetSecretValueResponse> for GetSecretValueResponse
[src]
fn eq(&self, other: &GetSecretValueResponse) -> bool
[src]
fn ne(&self, other: &GetSecretValueResponse) -> bool
[src]
impl Default for GetSecretValueResponse
[src]
fn default() -> GetSecretValueResponse
[src]
impl Clone for GetSecretValueResponse
[src]
fn clone(&self) -> GetSecretValueResponse
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for GetSecretValueResponse
[src]
impl<'de> Deserialize<'de> for GetSecretValueResponse
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for GetSecretValueResponse
impl Sync for GetSecretValueResponse
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self