Struct rusoto_ecs::NetworkBinding [] [src]

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

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

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

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

The protocol used for the network binding.

Trait Implementations

impl Default for NetworkBinding
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for NetworkBinding
[src]

[src]

Formats the value using the given formatter.

impl Clone for NetworkBinding
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more