logo
pub struct Input {
Show 16 fields 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_devices: Option<Vec<InputDeviceSettings>>, pub input_partner_ids: Option<Vec<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>,
}
Expand description

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_devices: Option<Vec<InputDeviceSettings>>

Settings for the input devices.

input_partner_ids: Option<Vec<String>>

A list of IDs for all Inputs which are partners of this one.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more