[][src]Struct rusoto_mediaconvert::S3EncryptionSettings

pub struct S3EncryptionSettings {
    pub encryption_type: Option<String>,
    pub kms_key_arn: Option<String>,
}

Settings for how your job outputs are encrypted as they are uploaded to Amazon S3.

Fields

encryption_type: Option<String>

Specify how you want your data keys managed. AWS uses data keys to encrypt your content. AWS also encrypts the data keys themselves, using a customer master key (CMK), and then stores the encrypted data keys alongside your encrypted content. Use this setting to specify which AWS service manages the CMK. For simplest set up, choose Amazon S3 (SERVERSIDEENCRYPTIONS3). If you want your master key to be managed by AWS Key Management Service (KMS), choose AWS KMS (SERVERSIDEENCRYPTIONKMS). By default, when you choose AWS KMS, KMS uses the AWS managed customer master key (CMK) associated with Amazon S3 to encrypt your data keys. You can optionally choose to specify a different, customer managed CMK. Do so by specifying the Amazon Resource Name (ARN) of the key for the setting KMS ARN (kmsKeyArn).

kms_key_arn: Option<String>

Optionally, specify the customer master key (CMK) that you want to use to encrypt the data key that AWS uses to encrypt your output content. Enter the Amazon Resource Name (ARN) of the CMK. To use this setting, you must also set Server-side encryption (S3ServerSideEncryptionType) to AWS KMS (SERVERSIDEENCRYPTION_KMS). If you set Server-side encryption to AWS KMS but don't specify a CMK here, AWS uses the AWS managed CMK associated with Amazon S3.

Trait Implementations

impl Clone for S3EncryptionSettings[src]

impl Debug for S3EncryptionSettings[src]

impl Default for S3EncryptionSettings[src]

impl<'de> Deserialize<'de> for S3EncryptionSettings[src]

impl PartialEq<S3EncryptionSettings> for S3EncryptionSettings[src]

impl Serialize for S3EncryptionSettings[src]

impl StructuralPartialEq for S3EncryptionSettings[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.