[][src]Struct rusoto_medialive::Input

pub struct Input {
    pub arn: Option<String>,
    pub attached_channels: Option<Vec<String>>,
    pub destinations: Option<Vec<InputDestination>>,
    pub id: Option<String>,
    pub input_class: Option<String>,
    pub input_source_type: Option<String>,
    pub media_connect_flows: Option<Vec<MediaConnectFlow>>,
    pub name: Option<String>,
    pub role_arn: Option<String>,
    pub security_groups: Option<Vec<String>>,
    pub sources: Option<Vec<InputSource>>,
    pub state: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub type_: Option<String>,
}

Placeholder documentation for Input

Fields

arn: Option<String>

The Unique ARN of the input (generated, immutable).

attached_channels: Option<Vec<String>>

A list of channel IDs that that input is attached to (currently an input can only be attached to one channel).

destinations: Option<Vec<InputDestination>>

A list of the destinations of the input (PUSH-type).

id: Option<String>

The generated ID of the input (unique for user account, immutable).

input_class: Option<String>

STANDARD - MediaLive expects two sources to be connected to this input. If the channel is also STANDARD, both sources will be ingested. If the channel is SINGLEPIPELINE, only the first source will be ingested; the second source will always be ignored, even if the first source fails. SINGLEPIPELINE - You can connect only one source to this input. If the ChannelClass is also SINGLE_PIPELINE, this value is valid. If the ChannelClass is STANDARD, this value is not valid because the channel requires two sources in the input.

input_source_type: Option<String>

Certain pull input sources can be dynamic, meaning that they can have their URL's dynamically changes during input switch actions. Presently, this functionality only works with MP4_FILE inputs.

media_connect_flows: Option<Vec<MediaConnectFlow>>

A list of MediaConnect Flows for this input.

name: Option<String>

The user-assigned name (This is a mutable value).

role_arn: Option<String>

The Amazon Resource Name (ARN) of the role this input assumes during and after creation.

security_groups: Option<Vec<String>>

A list of IDs for all the Input Security Groups attached to the input.

sources: Option<Vec<InputSource>>

A list of the sources of the input (PULL-type).

state: Option<String>tags: Option<HashMap<String, String>>

A collection of key-value pairs.

type_: Option<String>

Trait Implementations

impl Clone for Input[src]

impl Debug for Input[src]

impl Default for Input[src]

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

impl PartialEq<Input> for Input[src]

impl StructuralPartialEq for Input[src]

Auto Trait Implementations

impl RefUnwindSafe for Input

impl Send for Input

impl Sync for Input

impl Unpin for Input

impl UnwindSafe for Input

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: 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> 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.