Class: Aws::Chatbot::Types::Tag

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

Overview

A key-value pair. A tag consists of a tag key and a tag value. Tag keys and tag values are both required, but tag values can be empty (null) strings.

Do not include confidential or sensitive information in this field.

For more information, see User-Defined Tag Restrictions in the AWS Billing and Cost Management User Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#tag_keyString

The key of the tag.

Returns:

  • (String)


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

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

#tag_valueString

The value of the tag.

Returns:

  • (String)


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

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