[][src]Struct rusoto_mediaconnect::Encryption

pub struct Encryption {
    pub algorithm: String,
    pub constant_initialization_vector: Option<String>,
    pub device_id: Option<String>,
    pub key_type: Option<String>,
    pub region: Option<String>,
    pub resource_id: Option<String>,
    pub role_arn: String,
    pub secret_arn: Option<String>,
    pub url: Option<String>,
}

Information about the encryption of the flow.

Fields

algorithm: String

The type of algorithm that is used for the encryption (such as aes128, aes192, or aes256).

constant_initialization_vector: Option<String>

A 128-bit, 16-byte hex value represented by a 32-character string, to be used with the key for encrypting content. This parameter is not valid for static key encryption.

device_id: Option<String>

The value of one of the devices that you configured with your digital rights management (DRM) platform key provider. This parameter is required for SPEKE encryption and is not valid for static key encryption.

key_type: Option<String>

The type of key that is used for the encryption. If no keyType is provided, the service will use the default setting (static-key).

region: Option<String>

The AWS Region that the API Gateway proxy endpoint was created in. This parameter is required for SPEKE encryption and is not valid for static key encryption.

resource_id: Option<String>

An identifier for the content. The service sends this value to the key server to identify the current endpoint. The resource ID is also known as the content ID. This parameter is required for SPEKE encryption and is not valid for static key encryption.

role_arn: String

The ARN of the role that you created during setup (when you set up AWS Elemental MediaConnect as a trusted entity).

secret_arn: Option<String>

The ARN of the secret that you created in AWS Secrets Manager to store the encryption key. This parameter is required for static key encryption and is not valid for SPEKE encryption.

url: Option<String>

The URL from the API Gateway proxy that you set up to talk to your key server. This parameter is required for SPEKE encryption and is not valid for static key encryption.

Trait Implementations

impl Clone for Encryption[src]

impl Debug for Encryption[src]

impl Default for Encryption[src]

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

impl PartialEq<Encryption> for Encryption[src]

impl Serialize for Encryption[src]

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