[][src]Struct rusoto_medialive::InputPrepareScheduleActionSettings

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

Action to prepare an input for a future immediate input switch.

Fields

input_attachment_name_reference: String

The name of the input attachment that should be prepared by this action. If no name is provided, the action will stop the most recent prepare (if any) when activated.

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

impl Debug for InputPrepareScheduleActionSettings[src]

impl Default for InputPrepareScheduleActionSettings[src]

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

impl PartialEq<InputPrepareScheduleActionSettings> for InputPrepareScheduleActionSettings[src]

impl Serialize for InputPrepareScheduleActionSettings[src]

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