#[non_exhaustive]pub enum CmekOptions {
CmekConfigName(String),
DisableCmek(bool),
}Available on crate feature
data-store-service only.Expand description
CMEK options for the DataStore. Setting this field will override the default CmekConfig if one is set for the project.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CmekConfigName(String)
Resource name of the CmekConfig to use for protecting this DataStore.
DisableCmek(bool)
DataStore without CMEK protections. If a default CmekConfig is set for the project, setting this field will override the default CmekConfig as well.
Trait Implementations§
Source§impl Clone for CmekOptions
impl Clone for CmekOptions
Source§fn clone(&self) -> CmekOptions
fn clone(&self) -> CmekOptions
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 CmekOptions
impl Debug for CmekOptions
Source§impl PartialEq for CmekOptions
impl PartialEq for CmekOptions
impl StructuralPartialEq for CmekOptions
Auto Trait Implementations§
impl Freeze for CmekOptions
impl RefUnwindSafe for CmekOptions
impl Send for CmekOptions
impl Sync for CmekOptions
impl Unpin for CmekOptions
impl UnwindSafe for CmekOptions
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