Class: Aws::QConnect::Types::RuntimeSessionData
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::RuntimeSessionData
- 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
-
#key ⇒ String
The key of the data stored on the session.
-
#value ⇒ Types::RuntimeSessionDataValue
The value of the data stored on the session.
Instance Attribute Details
#key ⇒ String
The key 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 |
#value ⇒ Types::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 |