Struct rusoto_elb::SetLoadBalancerPoliciesOfListenerInput[][src]

pub struct SetLoadBalancerPoliciesOfListenerInput {
    pub load_balancer_name: String,
    pub load_balancer_port: i64,
    pub policy_names: Vec<String>,
}

Contains the parameters for SetLoadBalancePoliciesOfListener.

Fields

The name of the load balancer.

The external port of the load balancer.

The names of the policies. This list must include all policies to be enabled. If you omit a policy that is currently enabled, it is disabled. If the list is empty, all current policies are disabled.

Trait Implementations

impl Default for SetLoadBalancerPoliciesOfListenerInput
[src]

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

impl Debug for SetLoadBalancerPoliciesOfListenerInput
[src]

Formats the value using the given formatter. Read more

impl Clone for SetLoadBalancerPoliciesOfListenerInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SetLoadBalancerPoliciesOfListenerInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations