#[non_exhaustive]pub struct FieldLevelEncryptionProfile {
pub id: String,
pub last_modified_time: DateTime,
pub field_level_encryption_profile_config: Option<FieldLevelEncryptionProfileConfig>,
}
Expand description
A complex data type for field-level encryption profiles.
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 ID for a field-level encryption profile 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 profile was updated.
field_level_encryption_profile_config: Option<FieldLevelEncryptionProfileConfig>
A complex data type that includes the profile name and the encryption entities for the field-level encryption profile.
Implementations§
source§impl FieldLevelEncryptionProfile
impl FieldLevelEncryptionProfile
sourcepub fn id(&self) -> &str
pub fn id(&self) -> &str
The ID for a field-level encryption profile 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 profile was updated.
sourcepub fn field_level_encryption_profile_config(
&self
) -> Option<&FieldLevelEncryptionProfileConfig>
pub fn field_level_encryption_profile_config( &self ) -> Option<&FieldLevelEncryptionProfileConfig>
A complex data type that includes the profile name and the encryption entities for the field-level encryption profile.
source§impl FieldLevelEncryptionProfile
impl FieldLevelEncryptionProfile
sourcepub fn builder() -> FieldLevelEncryptionProfileBuilder
pub fn builder() -> FieldLevelEncryptionProfileBuilder
Creates a new builder-style object to manufacture FieldLevelEncryptionProfile
.
Trait Implementations§
source§impl Clone for FieldLevelEncryptionProfile
impl Clone for FieldLevelEncryptionProfile
source§fn clone(&self) -> FieldLevelEncryptionProfile
fn clone(&self) -> FieldLevelEncryptionProfile
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FieldLevelEncryptionProfile
impl Debug for FieldLevelEncryptionProfile
source§impl PartialEq for FieldLevelEncryptionProfile
impl PartialEq for FieldLevelEncryptionProfile
source§fn eq(&self, other: &FieldLevelEncryptionProfile) -> bool
fn eq(&self, other: &FieldLevelEncryptionProfile) -> bool
self
and other
values to be equal, and is used
by ==
.