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