pub struct GetSecretValueResponse {
pub arn: Option<String>,
pub created_date: Option<DateTime<Utc>>,
pub name: Option<String>,
pub secret_binary: Option<Bytes>,
pub secret_string: Option<String>,
pub version_id: Option<String>,
pub version_stages: Vec<String>,
}Expand description
Secrets Manager GetSecretValueResponse.
Fields§
§arn: Option<String>§created_date: Option<DateTime<Utc>>§name: Option<String>§secret_binary: Option<Bytes>§secret_string: Option<String>§version_id: Option<String>§version_stages: Vec<String>Trait Implementations§
Source§impl Clone for GetSecretValueResponse
impl Clone for GetSecretValueResponse
Source§fn clone(&self) -> GetSecretValueResponse
fn clone(&self) -> GetSecretValueResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetSecretValueResponse
impl Debug for GetSecretValueResponse
Source§impl Default for GetSecretValueResponse
impl Default for GetSecretValueResponse
Source§fn default() -> GetSecretValueResponse
fn default() -> GetSecretValueResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetSecretValueResponse
impl<'de> Deserialize<'de> for GetSecretValueResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl !Freeze for GetSecretValueResponse
impl RefUnwindSafe for GetSecretValueResponse
impl Send for GetSecretValueResponse
impl Sync for GetSecretValueResponse
impl Unpin for GetSecretValueResponse
impl UnsafeUnpin for GetSecretValueResponse
impl UnwindSafe for GetSecretValueResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more