[][src]Struct rusoto_medialive::InputDeviceNetworkSettings

pub struct InputDeviceNetworkSettings {
    pub dns_addresses: Option<Vec<String>>,
    pub gateway: Option<String>,
    pub ip_address: Option<String>,
    pub ip_scheme: Option<String>,
    pub subnet_mask: Option<String>,
}

The network settings for the input device.

Fields

dns_addresses: Option<Vec<String>>

The DNS addresses of the input device.

gateway: Option<String>

The network gateway IP address.

ip_address: Option<String>

The IP address of the input device.

ip_scheme: Option<String>

Specifies whether the input device has been configured (outside of MediaLive) to use a dynamic IP address assignment (DHCP) or a static IP address.

subnet_mask: Option<String>

The subnet mask of the input device.

Trait Implementations

impl Clone for InputDeviceNetworkSettings[src]

impl Debug for InputDeviceNetworkSettings[src]

impl Default for InputDeviceNetworkSettings[src]

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

impl PartialEq<InputDeviceNetworkSettings> for InputDeviceNetworkSettings[src]

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