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
sourceimpl 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.
sourceimpl ActiveContextTimeToLive
impl ActiveContextTimeToLive
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ActiveContextTimeToLive.
Trait Implementations
sourceimpl Clone for ActiveContextTimeToLive
impl Clone for ActiveContextTimeToLive
sourcefn clone(&self) -> ActiveContextTimeToLive
fn clone(&self) -> ActiveContextTimeToLive
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ActiveContextTimeToLive
impl Debug for ActiveContextTimeToLive
sourceimpl PartialEq<ActiveContextTimeToLive> for ActiveContextTimeToLive
impl PartialEq<ActiveContextTimeToLive> for ActiveContextTimeToLive
sourcefn eq(&self, other: &ActiveContextTimeToLive) -> bool
fn eq(&self, other: &ActiveContextTimeToLive) -> bool
impl StructuralPartialEq for ActiveContextTimeToLive
Auto Trait Implementations
impl RefUnwindSafe for ActiveContextTimeToLive
impl Send for ActiveContextTimeToLive
impl Sync for ActiveContextTimeToLive
impl Unpin for ActiveContextTimeToLive
impl UnwindSafe for ActiveContextTimeToLive
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more