Class: Aws::IoT::Types::Tag

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

Overview

Note:

When making an API call, you may pass Tag data as a hash:

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

A set of key/value pairs that are used to manage the resource.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The tag’s key.

Returns:

  • (String)


9734
9735
9736
9737
9738
# File 'lib/aws-sdk-iot/types.rb', line 9734

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

#valueString

The tag’s value.

Returns:

  • (String)


9734
9735
9736
9737
9738
# File 'lib/aws-sdk-iot/types.rb', line 9734

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