Struct aws_sdk_cloudfront::types::FieldLevelEncryption
source · #[non_exhaustive]pub struct FieldLevelEncryption {
pub id: String,
pub last_modified_time: DateTime,
pub field_level_encryption_config: Option<FieldLevelEncryptionConfig>,
}
Expand description
A complex data type that includes the profile configurations and other options specified for 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.id: String
The configuration ID for a field-level encryption configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.
last_modified_time: DateTime
The last time the field-level encryption configuration was changed.
field_level_encryption_config: Option<FieldLevelEncryptionConfig>
A complex data type that includes the profile configurations specified for field-level encryption.
Implementations§
source§impl FieldLevelEncryption
impl FieldLevelEncryption
sourcepub fn id(&self) -> &str
pub fn id(&self) -> &str
The configuration ID for a field-level encryption configuration which includes a set of profiles that specify certain selected data fields to be encrypted by specific public keys.
sourcepub fn last_modified_time(&self) -> &DateTime
pub fn last_modified_time(&self) -> &DateTime
The last time the field-level encryption configuration was changed.
sourcepub fn field_level_encryption_config(
&self,
) -> Option<&FieldLevelEncryptionConfig>
pub fn field_level_encryption_config( &self, ) -> Option<&FieldLevelEncryptionConfig>
A complex data type that includes the profile configurations specified for field-level encryption.
source§impl FieldLevelEncryption
impl FieldLevelEncryption
sourcepub fn builder() -> FieldLevelEncryptionBuilder
pub fn builder() -> FieldLevelEncryptionBuilder
Creates a new builder-style object to manufacture FieldLevelEncryption
.
Trait Implementations§
source§impl Clone for FieldLevelEncryption
impl Clone for FieldLevelEncryption
source§fn clone(&self) -> FieldLevelEncryption
fn clone(&self) -> FieldLevelEncryption
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FieldLevelEncryption
impl Debug for FieldLevelEncryption
source§impl PartialEq for FieldLevelEncryption
impl PartialEq for FieldLevelEncryption
source§fn eq(&self, other: &FieldLevelEncryption) -> bool
fn eq(&self, other: &FieldLevelEncryption) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FieldLevelEncryption
Auto Trait Implementations§
impl Freeze for FieldLevelEncryption
impl RefUnwindSafe for FieldLevelEncryption
impl Send for FieldLevelEncryption
impl Sync for FieldLevelEncryption
impl Unpin for FieldLevelEncryption
impl UnwindSafe for FieldLevelEncryption
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