Class: Aws::LookoutEquipment::Types::Tag

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

Overview

A tag is a key-value pair that can be added to a resource as metadata.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key for the specified tag.

Returns:

  • (String)


4012
4013
4014
4015
4016
4017
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 4012

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

#valueString

The value for the specified tag.

Returns:

  • (String)


4012
4013
4014
4015
4016
4017
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 4012

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