[][src]Struct rusoto_mediaconvert::InputDecryptionSettings

pub struct InputDecryptionSettings {
    pub decryption_mode: Option<String>,
    pub encrypted_decryption_key: Option<String>,
    pub initialization_vector: Option<String>,
    pub kms_key_region: Option<String>,
}

Settings for decrypting any input files that you encrypt before you upload them to Amazon S3. MediaConvert can decrypt files only when you use AWS Key Management Service (KMS) to encrypt the data key that you use to encrypt your content.

Fields

decryption_mode: Option<String>

Specify the encryption mode that you used to encrypt your input files.

encrypted_decryption_key: Option<String>

Warning! Don't provide your encryption key in plaintext. Your job settings could be intercepted, making your encrypted content vulnerable. Specify the encrypted version of the data key that you used to encrypt your content. The data key must be encrypted by AWS Key Management Service (KMS). The key can be 128, 192, or 256 bits.

initialization_vector: Option<String>

Specify the initialization vector that you used when you encrypted your content before uploading it to Amazon S3. You can use a 16-byte initialization vector with any encryption mode. Or, you can use a 12-byte initialization vector with GCM or CTR. MediaConvert accepts only initialization vectors that are base64-encoded.

kms_key_region: Option<String>

Specify the AWS Region for AWS Key Management Service (KMS) that you used to encrypt your data key, if that Region is different from the one you are using for AWS Elemental MediaConvert.

Trait Implementations

impl Clone for InputDecryptionSettings[src]

impl Debug for InputDecryptionSettings[src]

impl Default for InputDecryptionSettings[src]

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

impl PartialEq<InputDecryptionSettings> for InputDecryptionSettings[src]

impl Serialize for InputDecryptionSettings[src]

impl StructuralPartialEq for InputDecryptionSettings[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.