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