[][src]Struct rusoto_mediaconvert::SpekeKeyProviderCmaf

pub struct SpekeKeyProviderCmaf {
    pub certificate_arn: Option<String>,
    pub dash_signaled_system_ids: Option<Vec<String>>,
    pub hls_signaled_system_ids: Option<Vec<String>>,
    pub resource_id: Option<String>,
    pub url: Option<String>,
}

If your output group type is CMAF, use these settings when doing DRM encryption with a SPEKE-compliant key provider. If your output group type is HLS, DASH, or Microsoft Smooth, use the SpekeKeyProvider settings instead.

Fields

certificate_arn: Option<String>

If you want your key provider to encrypt the content keys that it provides to MediaConvert, set up a certificate with a master key using AWS Certificate Manager. Specify the certificate's Amazon Resource Name (ARN) here.

dash_signaled_system_ids: Option<Vec<String>>

Specify the DRM system IDs that you want signaled in the DASH manifest that MediaConvert creates as part of this CMAF package. The DASH manifest can currently signal up to three system IDs. For more information, see https://dashif.org/identifiers/content_protection/.

hls_signaled_system_ids: Option<Vec<String>>

Specify the DRM system ID that you want signaled in the HLS manifest that MediaConvert creates as part of this CMAF package. The HLS manifest can currently signal only one system ID. For more information, see https://dashif.org/identifiers/content_protection/.

resource_id: Option<String>

Specify the resource ID that your SPEKE-compliant key provider uses to identify this content.

url: Option<String>

Specify the URL to the key server that your SPEKE-compliant DRM key provider uses to provide keys for encrypting your content.

Trait Implementations

impl Clone for SpekeKeyProviderCmaf[src]

impl Default for SpekeKeyProviderCmaf[src]

impl PartialEq<SpekeKeyProviderCmaf> for SpekeKeyProviderCmaf[src]

impl Debug for SpekeKeyProviderCmaf[src]

impl Serialize for SpekeKeyProviderCmaf[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self