Class: Aws::QConnect::Types::RuntimeSessionData

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

Overview

The list of key-value pairs that are stored on the session.

Constant Summary collapse

SENSITIVE =
[:key]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of the data stored on the session.

Returns:

  • (String)


9909
9910
9911
9912
9913
9914
# File 'lib/aws-sdk-qconnect/types.rb', line 9909

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

#valueTypes::RuntimeSessionDataValue

The value of the data stored on the session.



9909
9910
9911
9912
9913
9914
# File 'lib/aws-sdk-qconnect/types.rb', line 9909

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