/** *

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.

*/ export interface _NetworkBinding { /** *

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

*/ bindIP?: string; /** *

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

*/ containerPort?: number; /** *

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

*/ hostPort?: number; /** *

The protocol used for the network binding.

*/ protocol?: "tcp" | "udp" | string; } export declare type _UnmarshalledNetworkBinding = _NetworkBinding;