namespace Amazon.Lambda.CloudWatchEvents.ECSEvents
{
///
/// Details on the network bindings between a container and its host container instance.
/// https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_NetworkBinding.html
///
public class NetworkBinding
{
///
/// The IP address that the container is bound to on the container instance.
///
public string BindIP { get; set; }
///
/// The port number on the container that is used with the network binding.
///
public int ContainerPort { get; set; }
///
/// The port number on the host that is used with the network binding.
///
public int HostPort { get; set; }
///
/// The protocol used for the network binding.
///
public string Protocol { get; set; }
}
}