Struct aws_sdk_lexruntime::types::ActiveContextTimeToLive
source · #[non_exhaustive]pub struct ActiveContextTimeToLive {
pub time_to_live_in_seconds: Option<i32>,
pub turns_to_live: Option<i32>,
}
Expand description
The length of time or number of turns that a context remains active.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.time_to_live_in_seconds: 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).
turns_to_live: 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.
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() -> ActiveContextTimeToLiveBuilder
pub fn builder() -> ActiveContextTimeToLiveBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ActiveContextTimeToLive
impl Debug for ActiveContextTimeToLive
source§impl PartialEq for ActiveContextTimeToLive
impl PartialEq for ActiveContextTimeToLive
impl StructuralPartialEq for ActiveContextTimeToLive
Auto Trait Implementations§
impl Freeze for ActiveContextTimeToLive
impl RefUnwindSafe for ActiveContextTimeToLive
impl Send for ActiveContextTimeToLive
impl Sync for ActiveContextTimeToLive
impl Unpin for ActiveContextTimeToLive
impl UnwindSafe for ActiveContextTimeToLive
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more