Struct rusoto_ecs::LoadBalancer [] [src]

pub struct LoadBalancer {
    pub container_name: Option<String>,
    pub container_port: Option<i64>,
    pub load_balancer_name: Option<String>,
    pub target_group_arn: Option<String>,
}

Details on a load balancer that is used with a service.

Fields

The name of the container (as it appears in a container definition) to associate with the load balancer.

The port on the container to associate with the load balancer. This port must correspond to a containerPort in the service's task definition. Your container instances must allow ingress traffic on the hostPort of the port mapping.

The name of a Classic load balancer.

The full Amazon Resource Name (ARN) of the Elastic Load Balancing target group associated with a service.

Trait Implementations

impl Default for LoadBalancer
[src]

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

impl Debug for LoadBalancer
[src]

Formats the value using the given formatter.

impl Clone for LoadBalancer
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more