[][src]Struct rusoto_medialive::InputDeviceSummary

pub struct InputDeviceSummary {
    pub arn: Option<String>,
    pub connection_state: Option<String>,
    pub device_settings_sync_state: Option<String>,
    pub hd_device_settings: Option<InputDeviceHdSettings>,
    pub id: Option<String>,
    pub mac_address: Option<String>,
    pub name: Option<String>,
    pub network_settings: Option<InputDeviceNetworkSettings>,
    pub serial_number: Option<String>,
    pub type_: Option<String>,
}

Details of the input device.

Fields

arn: Option<String>

The unique ARN of the input device.

connection_state: Option<String>

The state of the connection between the input device and AWS.

device_settings_sync_state: Option<String>

The status of the action to synchronize the device configuration. If you change the configuration of the input device (for example, the maximum bitrate), MediaLive sends the new data to the device. The device might not update itself immediately. SYNCED means the device has updated its configuration. SYNCING means that it has not updated its configuration.

hd_device_settings: Option<InputDeviceHdSettings>

Settings that describe an input device that is type HD.

id: Option<String>

The unique ID of the input device.

mac_address: Option<String>

The network MAC address of the input device.

name: Option<String>

A name that you specify for the input device.

network_settings: Option<InputDeviceNetworkSettings>

Network settings for the input device.

serial_number: Option<String>

The unique serial number of the input device.

type_: Option<String>

The type of the input device.

Trait Implementations

impl Clone for InputDeviceSummary[src]

impl Debug for InputDeviceSummary[src]

impl Default for InputDeviceSummary[src]

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

impl PartialEq<InputDeviceSummary> for InputDeviceSummary[src]

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