pub struct FieldLevelEncryptionProfileConfig {
pub caller_reference: String,
pub comment: Option<String>,
pub encryption_entities: EncryptionEntities,
pub name: String,
}
Expand description
A complex data type of profiles for the field-level encryption.
Fields§
§caller_reference: String
A unique number that ensures that the request can't be replayed.
comment: Option<String>
An optional comment for the field-level encryption profile.
encryption_entities: 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.
name: String
Profile name for the field-level encryption profile.
Trait Implementations§
Source§impl Clone for FieldLevelEncryptionProfileConfig
impl Clone for FieldLevelEncryptionProfileConfig
Source§fn clone(&self) -> FieldLevelEncryptionProfileConfig
fn clone(&self) -> FieldLevelEncryptionProfileConfig
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 Default for FieldLevelEncryptionProfileConfig
impl Default for FieldLevelEncryptionProfileConfig
Source§fn default() -> FieldLevelEncryptionProfileConfig
fn default() -> FieldLevelEncryptionProfileConfig
Returns the “default value” for a type. Read more
Source§impl PartialEq for FieldLevelEncryptionProfileConfig
impl PartialEq for FieldLevelEncryptionProfileConfig
Source§fn eq(&self, other: &FieldLevelEncryptionProfileConfig) -> bool
fn eq(&self, other: &FieldLevelEncryptionProfileConfig) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FieldLevelEncryptionProfileConfig
Auto Trait Implementations§
impl Freeze for FieldLevelEncryptionProfileConfig
impl RefUnwindSafe for FieldLevelEncryptionProfileConfig
impl Send for FieldLevelEncryptionProfileConfig
impl Sync for FieldLevelEncryptionProfileConfig
impl Unpin for FieldLevelEncryptionProfileConfig
impl UnwindSafe for FieldLevelEncryptionProfileConfig
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