Class: Aws::Connect::Types::TagSet

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

Overview

A tag set contains tag key and tag value.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The tag key in the tagSet.

Returns:

  • (String)


18120
18121
18122
18123
18124
18125
# File 'lib/aws-sdk-connect/types.rb', line 18120

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

#valueString

The tag value in the tagSet.

Returns:

  • (String)


18120
18121
18122
18123
18124
18125
# File 'lib/aws-sdk-connect/types.rb', line 18120

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