You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ElasticLoadBalancing::Types::CreateLoadBalancerPolicyInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateLoadBalancerPolicyInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  load_balancer_name: "AccessPointName", # required
  policy_name: "PolicyName", # required
  policy_type_name: "PolicyTypeName", # required
  policy_attributes: [
    {
      attribute_name: "AttributeName",
      attribute_value: "AttributeValue",
    },
  ],
}

Contains the parameters for CreateLoadBalancerPolicy.

Instance Attribute Summary collapse

Instance Attribute Details

#load_balancer_nameString

The name of the load balancer.

Returns:

  • (String)

    The name of the load balancer.

#policy_attributesArray<Types::PolicyAttribute>

The policy attributes.

Returns:

#policy_nameString

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

Returns:

  • (String)

    The name of the load balancer policy to be created.

#policy_type_nameString

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

Returns:

  • (String)

    The name of the base policy type.