Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

OutputContext

import type { OutputContext } from "https://aws-api.deno.dev/v0.4/services/lexmodelsv2.ts?docs=full";

Describes a session context that is activated when an intent is fulfilled.

interface OutputContext {
name: string;
timeToLiveInSeconds: number;
turnsToLive: number;
}

§Properties

§
name: string
[src]

The name of the output context.

§
timeToLiveInSeconds: number
[src]

The amount of time, in seconds, that the output context should remain active. The time is figured from the first time the context is sent to the user.

§
turnsToLive: number
[src]

The number of conversation turns that the output context should remain active. The number of turns is counted from the first time that the context is sent to the user.