pub struct SecretValueEntry {
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 SecretValueEntry.
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 SecretValueEntry
impl Clone for SecretValueEntry
Source§fn clone(&self) -> SecretValueEntry
fn clone(&self) -> SecretValueEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 SecretValueEntry
impl Debug for SecretValueEntry
Source§impl Default for SecretValueEntry
impl Default for SecretValueEntry
Source§fn default() -> SecretValueEntry
fn default() -> SecretValueEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecretValueEntry
impl<'de> Deserialize<'de> for SecretValueEntry
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 SecretValueEntry
impl RefUnwindSafe for SecretValueEntry
impl Send for SecretValueEntry
impl Sync for SecretValueEntry
impl Unpin for SecretValueEntry
impl UnsafeUnpin for SecretValueEntry
impl UnwindSafe for SecretValueEntry
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