Class: Aws::ChimeSDKVoice::Types::Tag

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/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 tag's key.

Returns:

  • (String)


3339
3340
3341
3342
3343
3344
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 3339

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

#valueString

The tag's value.

Returns:

  • (String)


3339
3340
3341
3342
3343
3344
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 3339

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