[][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 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.

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 PartialEq<Input> for Input[src]

impl Default for Input[src]

impl Clone for Input[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Input[src]

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

Auto Trait Implementations

impl Send for Input

impl Sync for Input

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self