Struct rusoto_elb::ApplySecurityGroupsToLoadBalancerInput[][src]

pub struct ApplySecurityGroupsToLoadBalancerInput {
    pub load_balancer_name: String,
    pub security_groups: Vec<String>,
}

Contains the parameters for ApplySecurityGroupsToLoadBalancer.

Fields

The name of the load balancer.

The IDs of the security groups to associate with the load balancer. Note that you cannot specify the name of the security group.

Trait Implementations

impl Default for ApplySecurityGroupsToLoadBalancerInput
[src]

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

impl Debug for ApplySecurityGroupsToLoadBalancerInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ApplySecurityGroupsToLoadBalancerInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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