Class: Aws::LexModelsV2::Types::OutputContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::OutputContext
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
Describes a session context that is activated when an intent is fulfilled.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the output context.
-
#time_to_live_in_seconds ⇒ Integer
The amount of time, in seconds, that the output context should remain active.
-
#turns_to_live ⇒ Integer
The number of conversation turns that the output context should remain active.
Instance Attribute Details
#name ⇒ String
The name of the output context.
11223 11224 11225 11226 11227 11228 11229 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11223 class OutputContext < Struct.new( :name, :time_to_live_in_seconds, :turns_to_live) SENSITIVE = [] include Aws::Structure end |
#time_to_live_in_seconds ⇒ Integer
The amount of time, in seconds, that the output context should remain active. The time is figured from the first time the context is sent to the user.
11223 11224 11225 11226 11227 11228 11229 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11223 class OutputContext < Struct.new( :name, :time_to_live_in_seconds, :turns_to_live) SENSITIVE = [] include Aws::Structure end |
#turns_to_live ⇒ Integer
The number of conversation turns that the output context should remain active. The number of turns is counted from the first time that the context is sent to the user.
11223 11224 11225 11226 11227 11228 11229 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11223 class OutputContext < Struct.new( :name, :time_to_live_in_seconds, :turns_to_live) SENSITIVE = [] include Aws::Structure end |