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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-qconnect/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)


8380
8381
8382
8383
8384
8385
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 8380

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

#valueTypes::RuntimeSessionDataValue

The value of the data stored on the session.



8380
8381
8382
8383
8384
8385
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 8380

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