Class: Aws::QuickSight::Types::SessionTag

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

Overview

The key-value pair used for the row-level security tags feature.

Constant Summary collapse

SENSITIVE =
[:value]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key for the tag.

Returns:

  • (String)


25291
25292
25293
25294
25295
25296
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 25291

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

#valueString

The value that you want to assign the tag.

Returns:

  • (String)


25291
25292
25293
25294
25295
25296
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 25291

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