#[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 ==
.