#[non_exhaustive]pub struct FieldLevelEncryptionProfileConfig {
pub name: String,
pub caller_reference: String,
pub comment: Option<String>,
pub encryption_entities: Option<EncryptionEntities>,
}
Expand description
A complex data type of profiles for the field-level encryption.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: String
Profile name for the field-level encryption profile.
caller_reference: String
A unique number that ensures that the request can't be replayed.
comment: Option<String>
An optional comment for the field-level encryption profile. The comment cannot be longer than 128 characters.
encryption_entities: Option<EncryptionEntities>
A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.
Implementations§
source§impl FieldLevelEncryptionProfileConfig
impl FieldLevelEncryptionProfileConfig
sourcepub fn caller_reference(&self) -> &str
pub fn caller_reference(&self) -> &str
A unique number that ensures that the request can't be replayed.
sourcepub fn comment(&self) -> Option<&str>
pub fn comment(&self) -> Option<&str>
An optional comment for the field-level encryption profile. The comment cannot be longer than 128 characters.
sourcepub fn encryption_entities(&self) -> Option<&EncryptionEntities>
pub fn encryption_entities(&self) -> Option<&EncryptionEntities>
A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.
source§impl FieldLevelEncryptionProfileConfig
impl FieldLevelEncryptionProfileConfig
sourcepub fn builder() -> FieldLevelEncryptionProfileConfigBuilder
pub fn builder() -> FieldLevelEncryptionProfileConfigBuilder
Creates a new builder-style object to manufacture FieldLevelEncryptionProfileConfig
.
Trait Implementations§
source§impl Clone for FieldLevelEncryptionProfileConfig
impl Clone for FieldLevelEncryptionProfileConfig
source§fn clone(&self) -> FieldLevelEncryptionProfileConfig
fn clone(&self) -> FieldLevelEncryptionProfileConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for FieldLevelEncryptionProfileConfig
impl PartialEq for FieldLevelEncryptionProfileConfig
source§fn eq(&self, other: &FieldLevelEncryptionProfileConfig) -> bool
fn eq(&self, other: &FieldLevelEncryptionProfileConfig) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FieldLevelEncryptionProfileConfig
Auto Trait Implementations§
impl Freeze for FieldLevelEncryptionProfileConfig
impl RefUnwindSafe for FieldLevelEncryptionProfileConfig
impl Send for FieldLevelEncryptionProfileConfig
impl Sync for FieldLevelEncryptionProfileConfig
impl Unpin for FieldLevelEncryptionProfileConfig
impl UnwindSafe for FieldLevelEncryptionProfileConfig
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more