#[non_exhaustive]pub struct FieldLevelEncryptionConfig { /* private fields */ }
Expand description
A complex data type that includes the profile configurations specified for field-level encryption.
Implementations§
source§impl FieldLevelEncryptionConfig
impl FieldLevelEncryptionConfig
sourcepub fn caller_reference(&self) -> Option<&str>
pub fn caller_reference(&self) -> Option<&str>
A unique number that ensures the request can't be replayed.
sourcepub fn comment(&self) -> Option<&str>
pub fn comment(&self) -> Option<&str>
An optional comment about the configuration. The comment cannot be longer than 128 characters.
sourcepub fn query_arg_profile_config(&self) -> Option<&QueryArgProfileConfig>
pub fn query_arg_profile_config(&self) -> Option<&QueryArgProfileConfig>
A complex data type that specifies when to forward content if a profile isn't found and the profile that can be provided as a query argument in a request.
sourcepub fn content_type_profile_config(&self) -> Option<&ContentTypeProfileConfig>
pub fn content_type_profile_config(&self) -> Option<&ContentTypeProfileConfig>
A complex data type that specifies when to forward content if a content type isn't recognized and profiles to use as by default in a request if a query argument doesn't specify a profile to use.
source§impl FieldLevelEncryptionConfig
impl FieldLevelEncryptionConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FieldLevelEncryptionConfig
.
Trait Implementations§
source§impl Clone for FieldLevelEncryptionConfig
impl Clone for FieldLevelEncryptionConfig
source§fn clone(&self) -> FieldLevelEncryptionConfig
fn clone(&self) -> FieldLevelEncryptionConfig
Returns a copy 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 FieldLevelEncryptionConfig
impl Debug for FieldLevelEncryptionConfig
source§impl PartialEq<FieldLevelEncryptionConfig> for FieldLevelEncryptionConfig
impl PartialEq<FieldLevelEncryptionConfig> for FieldLevelEncryptionConfig
source§fn eq(&self, other: &FieldLevelEncryptionConfig) -> bool
fn eq(&self, other: &FieldLevelEncryptionConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.