Class: Aws::QConnect::Types::RuntimeSessionData
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::RuntimeSessionData
- 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
-
#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.
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 |
#value ⇒ Types::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 |