Struct aws_sdk_lexruntime::model::ActiveContextTimeToLive
source · #[non_exhaustive]pub struct ActiveContextTimeToLive { /* private fields */ }
Expand description
The length of time or number of turns that a context remains active.
Implementations§
source§impl ActiveContextTimeToLive
impl ActiveContextTimeToLive
sourcepub fn time_to_live_in_seconds(&self) -> Option<i32>
pub fn time_to_live_in_seconds(&self) -> Option<i32>
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).
sourcepub fn turns_to_live(&self) -> Option<i32>
pub fn turns_to_live(&self) -> Option<i32>
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.
source§impl ActiveContextTimeToLive
impl ActiveContextTimeToLive
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ActiveContextTimeToLive
.
Trait Implementations§
source§impl Clone for ActiveContextTimeToLive
impl Clone for ActiveContextTimeToLive
source§fn clone(&self) -> ActiveContextTimeToLive
fn clone(&self) -> ActiveContextTimeToLive
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ActiveContextTimeToLive
impl Debug for ActiveContextTimeToLive
source§impl PartialEq<ActiveContextTimeToLive> for ActiveContextTimeToLive
impl PartialEq<ActiveContextTimeToLive> for ActiveContextTimeToLive
source§fn eq(&self, other: &ActiveContextTimeToLive) -> bool
fn eq(&self, other: &ActiveContextTimeToLive) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.