#[non_exhaustive]pub struct FieldLevelEncryptionProfileSummary {
pub id: String,
pub last_modified_time: DateTime,
pub name: String,
pub encryption_entities: Option<EncryptionEntities>,
pub comment: Option<String>,
}
Expand description
The field-level encryption profile summary.
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
ID for the field-level encryption profile summary.
last_modified_time: DateTime
The time when the field-level encryption profile summary was last updated.
name: String
Name for the field-level encryption profile summary.
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.
comment: Option<String>
An optional comment for the field-level encryption profile summary. The comment cannot be longer than 128 characters.
Implementations§
source§impl FieldLevelEncryptionProfileSummary
impl FieldLevelEncryptionProfileSummary
sourcepub fn last_modified_time(&self) -> &DateTime
pub fn last_modified_time(&self) -> &DateTime
The time when the field-level encryption profile summary was last updated.
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 FieldLevelEncryptionProfileSummary
impl FieldLevelEncryptionProfileSummary
sourcepub fn builder() -> FieldLevelEncryptionProfileSummaryBuilder
pub fn builder() -> FieldLevelEncryptionProfileSummaryBuilder
Creates a new builder-style object to manufacture FieldLevelEncryptionProfileSummary
.
Trait Implementations§
source§impl Clone for FieldLevelEncryptionProfileSummary
impl Clone for FieldLevelEncryptionProfileSummary
source§fn clone(&self) -> FieldLevelEncryptionProfileSummary
fn clone(&self) -> FieldLevelEncryptionProfileSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for FieldLevelEncryptionProfileSummary
impl PartialEq for FieldLevelEncryptionProfileSummary
source§fn eq(&self, other: &FieldLevelEncryptionProfileSummary) -> bool
fn eq(&self, other: &FieldLevelEncryptionProfileSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FieldLevelEncryptionProfileSummary
Auto Trait Implementations§
impl Freeze for FieldLevelEncryptionProfileSummary
impl RefUnwindSafe for FieldLevelEncryptionProfileSummary
impl Send for FieldLevelEncryptionProfileSummary
impl Sync for FieldLevelEncryptionProfileSummary
impl Unpin for FieldLevelEncryptionProfileSummary
impl UnwindSafe for FieldLevelEncryptionProfileSummary
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