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

CreateBotResponse

import type { CreateBotResponse } from "https://aws-api.deno.dev/v0.4/services/lexmodelsv2.ts?docs=full";
interface CreateBotResponse {
botId?: string | null;
botMembers?: BotMember[] | null;
botName?: string | null;
botStatus?: BotStatus | null;
botTags?: {
[key: string]: string | null | undefined;
}
| null;
botType?: BotType | null;
creationDateTime?: Date | number | null;
dataPrivacy?: DataPrivacy | null;
description?: string | null;
idleSessionTTLInSeconds?: number | null;
roleArn?: string | null;
testBotAliasTags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
botId?: string | null
[src]

A unique identifier for a particular bot. You use this to identify the bot when you call other Amazon Lex API operations.

§
botMembers?: BotMember[] | null
[src]

The list of bots in a network that was created.

§
botName?: string | null
[src]

The name specified for the bot.

§
botStatus?: BotStatus | null
[src]

Shows the current status of the bot. The bot is first in the Creating status. Once the bot is read for use, it changes to the Available status. After the bot is created, you can use the DRAFT version of the bot.

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

A list of tags associated with the bot.

§
botType?: BotType | null
[src]

The type of a bot that was created.

§
creationDateTime?: Date | number | null
[src]

A timestamp indicating the date and time that the bot was created.

§
dataPrivacy?: DataPrivacy | null
[src]

The data privacy settings specified for the bot.

§
description?: string | null
[src]

The description specified for the bot.

§
idleSessionTTLInSeconds?: number | null
[src]

The session idle time specified for the bot.

§
roleArn?: string | null
[src]

The IAM role specified for the bot.

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

A list of tags associated with the test alias for the bot.