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
sourceimpl 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.
sourceimpl EncryptionEntity
impl EncryptionEntity
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EncryptionEntity
.
Trait Implementations
sourceimpl Clone for EncryptionEntity
impl Clone for EncryptionEntity
sourcefn clone(&self) -> EncryptionEntity
fn clone(&self) -> EncryptionEntity
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more