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

ActiveContext

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

A context is a variable that contains information about the current state of the conversation between a user and Amazon Lex. Context can be set automatically by Amazon Lex when an intent is fulfilled, or it can be set at runtime using the PutContent, PutText, or PutSession operation.

interface ActiveContext {
name: string;
parameters: {
[key: string]: string | null | undefined;
}
;
}

§Properties

§
name: string
[src]

The name of the context.

§
parameters: {
[key: string]: string | null | undefined;
}
[src]

State variables for the current context. You can use these values as default values for slots in subsequent events.

§

The length of time or number of turns that a context remains active.