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

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

Overview

Information about a tag.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of the tag.

Returns:

  • (String)


1889
1890
1891
1892
1893
1894
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1889

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

#valueString

The value of the tag.

Returns:

  • (String)


1889
1890
1891
1892
1893
1894
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1889

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