#[non_exhaustive]pub struct FieldLevelEncryptionProfile { /* private fields */ }Expand description
A complex data type for field-level encryption profiles.
Implementations§
source§impl FieldLevelEncryptionProfile
impl FieldLevelEncryptionProfile
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&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) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for FieldLevelEncryptionProfile
impl Debug for FieldLevelEncryptionProfile
source§impl PartialEq<FieldLevelEncryptionProfile> for FieldLevelEncryptionProfile
impl PartialEq<FieldLevelEncryptionProfile> for FieldLevelEncryptionProfile
source§fn eq(&self, other: &FieldLevelEncryptionProfile) -> bool
fn eq(&self, other: &FieldLevelEncryptionProfile) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FieldLevelEncryptionProfile
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more