[][src]Struct rusoto_lex_models::OutputContext

pub struct OutputContext {
    pub name: String,
    pub time_to_live_in_seconds: i64,
    pub turns_to_live: i64,
}

The specification of an output context that is set when an intent is fulfilled.

Fields

name: String

The name of the context.

time_to_live_in_seconds: i64

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: i64

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.

Trait Implementations

impl Clone for OutputContext[src]

impl Debug for OutputContext[src]

impl Default for OutputContext[src]

impl<'de> Deserialize<'de> for OutputContext[src]

impl PartialEq<OutputContext> for OutputContext[src]

impl Serialize for OutputContext[src]

impl StructuralPartialEq for OutputContext[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.