Struct rusoto_elb::SetLoadBalancerPoliciesForBackendServerInput[][src]

pub struct SetLoadBalancerPoliciesForBackendServerInput {
    pub instance_port: i64,
    pub load_balancer_name: String,
    pub policy_names: Vec<String>,
}

Contains the parameters for SetLoadBalancerPoliciesForBackendServer.

Fields

The port number associated with the EC2 instance.

The name of the load balancer.

The names of the policies. If the list is empty, then all current polices are removed from the EC2 instance.

Trait Implementations

impl Default for SetLoadBalancerPoliciesForBackendServerInput
[src]

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

impl Debug for SetLoadBalancerPoliciesForBackendServerInput
[src]

Formats the value using the given formatter. Read more

impl Clone for SetLoadBalancerPoliciesForBackendServerInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SetLoadBalancerPoliciesForBackendServerInput
[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