pub struct EncryptionAtRestOptions {
pub enabled: Option<bool>,
pub kms_key_id: Option<String>,
}Expand description
Specifies the Encryption At Rest Options.
Fields§
§enabled: Option<bool>Specifies the option to enable Encryption At Rest.
kms_key_id: Option<String>Specifies the KMS Key ID for Encryption At Rest options.
Trait Implementations§
Source§impl Clone for EncryptionAtRestOptions
impl Clone for EncryptionAtRestOptions
Source§fn clone(&self) -> EncryptionAtRestOptions
fn clone(&self) -> EncryptionAtRestOptions
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 EncryptionAtRestOptions
impl Debug for EncryptionAtRestOptions
Source§impl Default for EncryptionAtRestOptions
impl Default for EncryptionAtRestOptions
Source§fn default() -> EncryptionAtRestOptions
fn default() -> EncryptionAtRestOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EncryptionAtRestOptions
impl<'de> Deserialize<'de> for EncryptionAtRestOptions
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
Source§impl PartialEq for EncryptionAtRestOptions
impl PartialEq for EncryptionAtRestOptions
Source§impl Serialize for EncryptionAtRestOptions
impl Serialize for EncryptionAtRestOptions
impl StructuralPartialEq for EncryptionAtRestOptions
Auto Trait Implementations§
impl Freeze for EncryptionAtRestOptions
impl RefUnwindSafe for EncryptionAtRestOptions
impl Send for EncryptionAtRestOptions
impl Sync for EncryptionAtRestOptions
impl Unpin for EncryptionAtRestOptions
impl UnwindSafe for EncryptionAtRestOptions
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