#[non_exhaustive]pub struct ContentTypeProfileConfig { /* private fields */ }
Expand description
The configuration for a field-level encryption content type-profile mapping.
Implementations§
source§impl ContentTypeProfileConfig
impl ContentTypeProfileConfig
sourcepub fn forward_when_content_type_is_unknown(&self) -> Option<bool>
pub fn forward_when_content_type_is_unknown(&self) -> Option<bool>
The setting in a field-level encryption content type-profile mapping that specifies what to do when an unknown content type is provided for the profile. If true, content is forwarded without being encrypted when the content type is unknown. If false (the default), an error is returned when the content type is unknown.
sourcepub fn content_type_profiles(&self) -> Option<&ContentTypeProfiles>
pub fn content_type_profiles(&self) -> Option<&ContentTypeProfiles>
The configuration for a field-level encryption content type-profile.
source§impl ContentTypeProfileConfig
impl ContentTypeProfileConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ContentTypeProfileConfig
.
Trait Implementations§
source§impl Clone for ContentTypeProfileConfig
impl Clone for ContentTypeProfileConfig
source§fn clone(&self) -> ContentTypeProfileConfig
fn clone(&self) -> ContentTypeProfileConfig
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 ContentTypeProfileConfig
impl Debug for ContentTypeProfileConfig
source§impl PartialEq<ContentTypeProfileConfig> for ContentTypeProfileConfig
impl PartialEq<ContentTypeProfileConfig> for ContentTypeProfileConfig
source§fn eq(&self, other: &ContentTypeProfileConfig) -> bool
fn eq(&self, other: &ContentTypeProfileConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.