[][src]Struct rusoto_cloudfront::EncryptionEntity

pub struct EncryptionEntity {
    pub field_patterns: FieldPatterns,
    pub provider_id: String,
    pub public_key_id: String,
}

Complex data type for field-level encryption profiles that includes the encryption key and field pattern specifications.

Fields

field_patterns: 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.

provider_id: String

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.

public_key_id: String

The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.

Trait Implementations

impl Clone for EncryptionEntity[src]

impl Debug for EncryptionEntity[src]

impl Default for EncryptionEntity[src]

impl PartialEq<EncryptionEntity> for EncryptionEntity[src]

impl StructuralPartialEq for EncryptionEntity[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.