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

CreateBotAliasResponse

import type { CreateBotAliasResponse } from "https://aws-api.deno.dev/v0.4/services/lexmodelsv2.ts?docs=full";
interface CreateBotAliasResponse {
botAliasId?: string | null;
botAliasLocaleSettings?: {
[key: string]: BotAliasLocaleSettings | null | undefined;
}
| null;
botAliasName?: string | null;
botAliasStatus?: BotAliasStatus | null;
botId?: string | null;
botVersion?: string | null;
conversationLogSettings?: ConversationLogSettings | null;
creationDateTime?: Date | number | null;
description?: string | null;
sentimentAnalysisSettings?: SentimentAnalysisSettings | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
botAliasId?: string | null
[src]

The unique identifier of the bot alias.

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

Configuration information for a specific locale.

§
botAliasName?: string | null
[src]

The name specified for the bot alias.

§
botAliasStatus?: BotAliasStatus | null
[src]

The current status of the alias. The alias is first put into the Creating state. When the alias is ready to be used, it is put into the Available state. You can use the DescribeBotAlias operation to get the current state of an alias.

§
botId?: string | null
[src]

The unique identifier of the bot that this alias applies to.

§
botVersion?: string | null
[src]

The version of the bot associated with this alias.

§
conversationLogSettings?: ConversationLogSettings | null
[src]

The conversation log settings specified for the alias.

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

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

§
description?: string | null
[src]

The description specified for the bot alias.

§
sentimentAnalysisSettings?: SentimentAnalysisSettings | null
[src]
§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A list of tags associated with the bot alias.