You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Lex::Types::ActiveContextTimeToLive

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ActiveContextTimeToLive as input to an Aws::Client method, you can use a vanilla Hash:

{
  time_to_live_in_seconds: 1,
  turns_to_live: 1,
}

The length of time or number of turns that a context remains active.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#time_to_live_in_secondsInteger

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).

Returns:

  • (Integer)

    The number of seconds that the context should be active after it is first sent in a PostContent or PostText response.

#turns_to_liveInteger

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.

Returns:

  • (Integer)

    The number of conversation turns that the context should be active.