Class: Aws::Lex::Types::ActiveContextTimeToLive
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lex::Types::ActiveContextTimeToLive
- Defined in:
- gems/aws-sdk-lex/lib/aws-sdk-lex/types.rb
Overview
The length of time or number of turns that a context remains active.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#time_to_live_in_seconds ⇒ Integer
The number of seconds that the context should be active after it is first sent in a
PostContent
orPostText
response. -
#turns_to_live ⇒ Integer
The number of conversation turns that the context should be active.
Instance Attribute Details
#time_to_live_in_seconds ⇒ Integer
The number of seconds that the context should be active after it is
first sent in a PostContent
or PostText
response. You can set
the value between 5 and 86,400 seconds (24 hours).
58 59 60 61 62 63 |
# File 'gems/aws-sdk-lex/lib/aws-sdk-lex/types.rb', line 58 class ActiveContextTimeToLive < Struct.new( :time_to_live_in_seconds, :turns_to_live) SENSITIVE = [] include Aws::Structure end |
#turns_to_live ⇒ Integer
The number of conversation turns that the context should be active.
A conversation turn is one PostContent
or PostText
request and
the corresponding response from Amazon Lex.
58 59 60 61 62 63 |
# File 'gems/aws-sdk-lex/lib/aws-sdk-lex/types.rb', line 58 class ActiveContextTimeToLive < Struct.new( :time_to_live_in_seconds, :turns_to_live) SENSITIVE = [] include Aws::Structure end |