Struct aws_sdk_cloudfront::model::EncryptionEntity
source · #[non_exhaustive]pub struct EncryptionEntity { /* private fields */ }
Expand description
Complex data type for field-level encryption profiles that includes the encryption key and field pattern specifications.
Implementations§
source§impl EncryptionEntity
impl EncryptionEntity
sourcepub fn public_key_id(&self) -> Option<&str>
pub fn public_key_id(&self) -> Option<&str>
The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.
sourcepub fn provider_id(&self) -> Option<&str>
pub fn provider_id(&self) -> Option<&str>
The provider associated with the public key being used for encryption. This value must also be provided with the private key for applications to be able to decrypt data.
sourcepub fn field_patterns(&self) -> Option<&FieldPatterns>
pub fn field_patterns(&self) -> Option<&FieldPatterns>
Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (*). You can't overlap field patterns. For example, you can't have both ABC* and AB*. Note that field patterns are case-sensitive.
source§impl EncryptionEntity
impl EncryptionEntity
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EncryptionEntity
.
Trait Implementations§
source§impl Clone for EncryptionEntity
impl Clone for EncryptionEntity
source§fn clone(&self) -> EncryptionEntity
fn clone(&self) -> EncryptionEntity
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EncryptionEntity
impl Debug for EncryptionEntity
source§impl PartialEq<EncryptionEntity> for EncryptionEntity
impl PartialEq<EncryptionEntity> for EncryptionEntity
source§fn eq(&self, other: &EncryptionEntity) -> bool
fn eq(&self, other: &EncryptionEntity) -> bool
self
and other
values to be equal, and is used
by ==
.