Class: Aws::ElasticLoadBalancing::Types::PolicyAttribute

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 PolicyAttribute data as a hash:

{
  attribute_name: "AttributeName",
  attribute_value: "AttributeValue",
}

Information about a policy attribute.

Instance Attribute Summary collapse

Instance Attribute Details

#attribute_nameString

The name of the attribute.

Returns:

  • (String)


1731
1732
1733
1734
1735
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1731

class PolicyAttribute < Struct.new(
  :attribute_name,
  :attribute_value)
  include Aws::Structure
end

#attribute_valueString

The value of the attribute.

Returns:

  • (String)


1731
1732
1733
1734
1735
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1731

class PolicyAttribute < Struct.new(
  :attribute_name,
  :attribute_value)
  include Aws::Structure
end