Class: Aws::Personalize::Types::Tag

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

Overview

The optional metadata that you apply to resources to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define. For more information see [Tagging Amazon Personalize recources].

[1]: docs.aws.amazon.com/personalize/latest/dg/tagging-resources.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#tag_keyString

One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

Returns:

  • (String)


5324
5325
5326
5327
5328
5329
# File 'lib/aws-sdk-personalize/types.rb', line 5324

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

#tag_valueString

The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

Returns:

  • (String)


5324
5325
5326
5327
5328
5329
# File 'lib/aws-sdk-personalize/types.rb', line 5324

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