[][src]Struct rusoto_mediaconvert::SpekeKeyProvider

pub struct SpekeKeyProvider {
    pub certificate_arn: Option<String>,
    pub resource_id: Option<String>,
    pub system_ids: Option<Vec<String>>,
    pub url: Option<String>,
}

If your output group type is HLS, DASH, or Microsoft Smooth, use these settings when doing DRM encryption with a SPEKE-compliant key provider. If your output group type is CMAF, use the SpekeKeyProviderCmaf 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.

resource_id: Option<String>

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

system_ids: Option<Vec<String>>

Relates to SPEKE implementation. DRM system identifiers. DASH output groups support a max of two system ids. Other group types support one system id. See https://dashif.org/identifiers/content_protection/ for more details.

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 SpekeKeyProvider[src]

impl Debug for SpekeKeyProvider[src]

impl Default for SpekeKeyProvider[src]

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

impl PartialEq<SpekeKeyProvider> for SpekeKeyProvider[src]

impl Serialize for SpekeKeyProvider[src]

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