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

BotSummary

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

Summary information about a bot returned by the ListBots operation.

interface BotSummary {
botId?: string | null;
botName?: string | null;
botStatus?: BotStatus | null;
botType?: BotType | null;
description?: string | null;
lastUpdatedDateTime?: Date | number | null;
latestBotVersion?: string | null;
}

§Properties

§
botId?: string | null
[src]

The unique identifier assigned to the bot. Use this ID to get detailed information about the bot with the DescribeBot operation.

§
botName?: string | null
[src]

The name of the bot.

§
botStatus?: BotStatus | null
[src]

The current status of the bot. When the status is Available the bot is ready for use.

§
botType?: BotType | null
[src]

The type of the bot.

§
description?: string | null
[src]

The description of the bot.

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

The date and time that the bot was last updated.

§
latestBotVersion?: string | null
[src]

The latest numerical version in use for the bot.