#[non_exhaustive]pub struct DataEncryptionState {
pub kms_key_version_name: String,
/* private fields */
}Expand description
Describes encryption state of a resource.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.kms_key_version_name: StringRequired. The KMS key version name with which data of a resource is encrypted.
Implementations§
Source§impl DataEncryptionState
impl DataEncryptionState
pub fn new() -> Self
Sourcepub fn set_kms_key_version_name<T: Into<String>>(self, v: T) -> Self
pub fn set_kms_key_version_name<T: Into<String>>(self, v: T) -> Self
Sets the value of kms_key_version_name.
Trait Implementations§
Source§impl Clone for DataEncryptionState
impl Clone for DataEncryptionState
Source§fn clone(&self) -> DataEncryptionState
fn clone(&self) -> DataEncryptionState
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 DataEncryptionState
impl Debug for DataEncryptionState
Source§impl Default for DataEncryptionState
impl Default for DataEncryptionState
Source§fn default() -> DataEncryptionState
fn default() -> DataEncryptionState
Returns the “default value” for a type. Read more
Source§impl Message for DataEncryptionState
impl Message for DataEncryptionState
Source§impl PartialEq for DataEncryptionState
impl PartialEq for DataEncryptionState
impl StructuralPartialEq for DataEncryptionState
Auto Trait Implementations§
impl Freeze for DataEncryptionState
impl RefUnwindSafe for DataEncryptionState
impl Send for DataEncryptionState
impl Sync for DataEncryptionState
impl Unpin for DataEncryptionState
impl UnwindSafe for DataEncryptionState
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