Class: Aws::Chime::Types::Tag

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

Overview

Describes a tag applied to a resource.

Constant Summary collapse

SENSITIVE =
[:key, :value]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of the tag.

Returns:

  • (String)


7913
7914
7915
7916
7917
7918
# File 'lib/aws-sdk-chime/types.rb', line 7913

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

#valueString

The value of the tag.

Returns:

  • (String)


7913
7914
7915
7916
7917
7918
# File 'lib/aws-sdk-chime/types.rb', line 7913

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