Class: Aws::ElasticLoadBalancing::Types::DescribeLoadBalancerPoliciesInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticloadbalancing/types.rb

Overview

Note:

When making an API call, you may pass DescribeLoadBalancerPoliciesInput data as a hash:

{
  load_balancer_name: "AccessPointName",
  policy_names: ["PolicyName"],
}

Contains the parameters for DescribeLoadBalancerPolicies.

Instance Attribute Summary collapse

Instance Attribute Details

#load_balancer_nameString

The name of the load balancer.

Returns:

  • (String)


1012
1013
1014
1015
1016
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1012

class DescribeLoadBalancerPoliciesInput < Struct.new(
  :load_balancer_name,
  :policy_names)
  include Aws::Structure
end

#policy_namesArray<String>

The names of the policies.

Returns:

  • (Array<String>)


1012
1013
1014
1015
1016
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1012

class DescribeLoadBalancerPoliciesInput < Struct.new(
  :load_balancer_name,
  :policy_names)
  include Aws::Structure
end