#[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 ==
.impl StructuralPartialEq for FieldLevelEncryptionProfile
Auto Trait Implementations§
impl Freeze for FieldLevelEncryptionProfile
impl RefUnwindSafe for FieldLevelEncryptionProfile
impl Send for FieldLevelEncryptionProfile
impl Sync for FieldLevelEncryptionProfile
impl Unpin for FieldLevelEncryptionProfile
impl UnwindSafe for FieldLevelEncryptionProfile
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