[][src]Struct rusoto_mediaconvert::DashAdditionalManifest

pub struct DashAdditionalManifest {
    pub manifest_name_modifier: Option<String>,
    pub selected_outputs: Option<Vec<String>>,
}

Specify the details for each additional DASH manifest that you want the service to generate for this output group. Each manifest can reference a different subset of outputs in the group.

Fields

manifest_name_modifier: Option<String>

Specify a name modifier that the service adds to the name of this manifest to make it different from the file names of the other main manifests in the output group. For example, say that the default main manifest for your DASH group is film-name.mpd. If you enter "-no-premium" for this setting, then the file name the service generates for this top-level manifest is film-name-no-premium.mpd.

selected_outputs: Option<Vec<String>>

Specify the outputs that you want this additional top-level manifest to reference.

Trait Implementations

impl Clone for DashAdditionalManifest[src]

impl Debug for DashAdditionalManifest[src]

impl Default for DashAdditionalManifest[src]

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

impl PartialEq<DashAdditionalManifest> for DashAdditionalManifest[src]

impl Serialize for DashAdditionalManifest[src]

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