Class: Aws::ElasticLoadBalancing::Types::Tag

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

{
  key: "TagKey", # required
  value: "TagValue",
}

Information about a tag.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of the tag.

Returns:

  • (String)


2121
2122
2123
2124
2125
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 2121

class Tag < Struct.new(
  :key,
  :value)
  include Aws::Structure
end

#valueString

The value of the tag.

Returns:

  • (String)


2121
2122
2123
2124
2125
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 2121

class Tag < Struct.new(
  :key,
  :value)
  include Aws::Structure
end