Struct rusoto_lightsail::DetachInstancesFromLoadBalancerRequest[][src]

pub struct DetachInstancesFromLoadBalancerRequest {
    pub instance_names: Vec<String>,
    pub load_balancer_name: String,
}

Fields

An array of strings containing the names of the instances you want to detach from the load balancer.

The name of the Lightsail load balancer.

Trait Implementations

impl Default for DetachInstancesFromLoadBalancerRequest
[src]

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

impl Debug for DetachInstancesFromLoadBalancerRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DetachInstancesFromLoadBalancerRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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