[][src]Struct rusoto_medialive::InputSwitchScheduleActionSettings

pub struct InputSwitchScheduleActionSettings {
    pub input_attachment_name_reference: String,
    pub input_clipping_settings: Option<InputClippingSettings>,
    pub url_path: Option<Vec<String>>,
}

Settings for the "switch input" action: to switch from ingesting one input to ingesting another input.

Fields

input_attachment_name_reference: String

The name of the input attachment (not the name of the input!) to switch to. The name is specified in the channel configuration.

input_clipping_settings: Option<InputClippingSettings>

Settings to let you create a clip of the file input, in order to set up the input to ingest only a portion of the file.

url_path: Option<Vec<String>>

The value for the variable portion of the URL for the dynamic input, for this instance of the input. Each time you use the same dynamic input in an input switch action, you can provide a different value, in order to connect the input to a different content source.

Trait Implementations

impl Clone for InputSwitchScheduleActionSettings[src]

impl Debug for InputSwitchScheduleActionSettings[src]

impl Default for InputSwitchScheduleActionSettings[src]

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

impl PartialEq<InputSwitchScheduleActionSettings> for InputSwitchScheduleActionSettings[src]

impl Serialize for InputSwitchScheduleActionSettings[src]

impl StructuralPartialEq for InputSwitchScheduleActionSettings[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, 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> Sealed<T> for T where
    T: ?Sized

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.