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

BotAliasSummary

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

Summary information about bot aliases returned from the ListBotAliases operation.

interface BotAliasSummary {
botAliasId?: string | null;
botAliasName?: string | null;
botAliasStatus?: BotAliasStatus | null;
botVersion?: string | null;
creationDateTime?: Date | number | null;
description?: string | null;
lastUpdatedDateTime?: Date | number | null;
}

§Properties

§
botAliasId?: string | null
[src]

The unique identifier assigned to the bot alias. You can use this ID to get detailed information about the alias using the DescribeBotAlias operation.

§
botAliasName?: string | null
[src]

The name of the bot alias.

§
botAliasStatus?: BotAliasStatus | null
[src]

The current state of the bot alias. If the status is Available, the alias is ready for use.

§
botVersion?: string | null
[src]

The version of the bot that the bot alias references.

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

A timestamp of the date and time that the bot alias was created.

§
description?: string | null
[src]

The description of the bot alias.

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

A timestamp of the date and time that the bot alias was last updated.