Class: Aws::Translate::Types::Tag

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

Overview

A key-value pair that adds as a metadata to a resource used by Amazon Translate.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The initial part of a key-value pair that forms a tag associated with a given resource.

Returns:

  • (String)


1280
1281
1282
1283
1284
1285
# File 'lib/aws-sdk-translate/types.rb', line 1280

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

#valueString

The second part of a key-value pair that forms a tag associated with a given resource.

Returns:

  • (String)


1280
1281
1282
1283
1284
1285
# File 'lib/aws-sdk-translate/types.rb', line 1280

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