Class: Aws::IoTThingsGraph::Types::Tag

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb

Overview

Metadata assigned to an AWS IoT Things Graph resource consisting of a key-value pair.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The required name of the tag. The string value can be from 1 to 128 Unicode characters in length.

Returns:

  • (String)


1484
1485
1486
1487
1488
1489
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1484

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

#valueString

The optional value of the tag. The string value can be from 1 to 256 Unicode characters in length.

Returns:

  • (String)


1484
1485
1486
1487
1488
1489
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1484

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