[][src]Struct rusoto_mediaconvert::HlsAdditionalManifest

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

Specify the details for each additional HLS 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 HLS group is film-name.m3u8. 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.m3u8. For HLS output groups, specify a manifestNameModifier that is different from the nameModifier of the output. The service uses the output name modifier to create unique names for the individual variant manifests.

selected_outputs: Option<Vec<String>>

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

Trait Implementations

impl Clone for HlsAdditionalManifest[src]

impl Debug for HlsAdditionalManifest[src]

impl Default for HlsAdditionalManifest[src]

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

impl PartialEq<HlsAdditionalManifest> for HlsAdditionalManifest[src]

impl Serialize for HlsAdditionalManifest[src]

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