pub struct UpdateSecretInput {
pub client_request_token: Option<String>,
pub description: Option<String>,
pub kms_key_id: Option<String>,
pub secret_binary: Option<Bytes>,
pub secret_id: String,
pub secret_string: Option<String>,
pub type: Option<String>,
}Expand description
Secrets Manager UpdateSecretInput.
Fields§
§client_request_token: Option<String>§description: Option<String>§kms_key_id: Option<String>§secret_binary: Option<Bytes>§secret_id: String§secret_string: Option<String>§type: Option<String>Trait Implementations§
Source§impl Clone for UpdateSecretInput
impl Clone for UpdateSecretInput
Source§fn clone(&self) -> UpdateSecretInput
fn clone(&self) -> UpdateSecretInput
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 UpdateSecretInput
impl Debug for UpdateSecretInput
Source§impl Default for UpdateSecretInput
impl Default for UpdateSecretInput
Source§fn default() -> UpdateSecretInput
fn default() -> UpdateSecretInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateSecretInput
impl<'de> Deserialize<'de> for UpdateSecretInput
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 UpdateSecretInput
impl RefUnwindSafe for UpdateSecretInput
impl Send for UpdateSecretInput
impl Sync for UpdateSecretInput
impl Unpin for UpdateSecretInput
impl UnsafeUnpin for UpdateSecretInput
impl UnwindSafe for UpdateSecretInput
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