Class: Aws::QBusiness::Types::Tag

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

Overview

A list of key/value pairs that identify an index, FAQ, or data source. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key for the tag. Keys are not case sensitive and must be unique for the Amazon Q Business application or data source.

Returns:

  • (String)


7288
7289
7290
7291
7292
7293
# File 'lib/aws-sdk-qbusiness/types.rb', line 7288

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

#valueString

The value associated with the tag. The value may be an empty string but it can’t be null.

Returns:

  • (String)


7288
7289
7290
7291
7292
7293
# File 'lib/aws-sdk-qbusiness/types.rb', line 7288

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