[][src]Struct rusoto_ecs::NetworkBinding

pub struct NetworkBinding {
    pub bind_ip: Option<String>,
    pub container_port: Option<i64>,
    pub host_port: Option<i64>,
    pub protocol: Option<String>,
}

Details on the network bindings between a container and its host container instance. After a task reaches the RUNNING status, manual and automatic host and container port assignments are visible in the networkBindings section of DescribeTasks API responses.

Fields

bind_ip: Option<String>

The IP address that the container is bound to on the container instance.

container_port: Option<i64>

The port number on the container that is used with the network binding.

host_port: Option<i64>

The port number on the host that is used with the network binding.

protocol: Option<String>

The protocol used for the network binding.

Trait Implementations

impl Clone for NetworkBinding[src]

impl Debug for NetworkBinding[src]

impl Default for NetworkBinding[src]

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

impl PartialEq<NetworkBinding> for NetworkBinding[src]

impl Serialize for NetworkBinding[src]

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