[][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 PartialEq<InputDecryptionSettings> for InputDecryptionSettings[src]

impl Default for InputDecryptionSettings[src]

impl Clone for InputDecryptionSettings[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for InputDecryptionSettings[src]

impl Serialize for InputDecryptionSettings[src]

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

Auto Trait Implementations

impl Send for InputDecryptionSettings

impl Sync for InputDecryptionSettings

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self