Struct rusoto_elb::CreateLoadBalancerPolicyInput[][src]

pub struct CreateLoadBalancerPolicyInput {
    pub load_balancer_name: String,
    pub policy_attributes: Option<Vec<PolicyAttribute>>,
    pub policy_name: String,
    pub policy_type_name: String,
}

Contains the parameters for CreateLoadBalancerPolicy.

Fields

The name of the load balancer.

The policy attributes.

The name of the load balancer policy to be created. This name must be unique within the set of policies for this load balancer.

The name of the base policy type. To get the list of policy types, use DescribeLoadBalancerPolicyTypes.

Trait Implementations

impl Default for CreateLoadBalancerPolicyInput
[src]

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

impl Debug for CreateLoadBalancerPolicyInput
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateLoadBalancerPolicyInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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