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

UpdateBotAliasResponse

import type { UpdateBotAliasResponse } from "https://aws-api.deno.dev/v0.4/services/lexmodelsv2.ts?docs=full";
interface UpdateBotAliasResponse {
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;
lastUpdatedDateTime?: Date | number | null;
sentimentAnalysisSettings?: SentimentAnalysisSettings | null;
}

§Properties

§
botAliasId?: string | null
[src]

The identifier of the updated bot alias.

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

The updated Lambda functions to use in each locale for the bot alias.

§
botAliasName?: string | null
[src]

The updated name of the bot alias.

§
botAliasStatus?: BotAliasStatus | null
[src]

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

§
botId?: string | null
[src]

The identifier of the bot with the updated alias.

§
botVersion?: string | null
[src]

The updated version of the bot that the alias points to.

§
conversationLogSettings?: ConversationLogSettings | null
[src]

The updated settings for storing conversation logs in Amazon CloudWatch Logs and Amazon S3 buckets.

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

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

§
description?: string | null
[src]

The updated description of the bot alias.

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

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

§
sentimentAnalysisSettings?: SentimentAnalysisSettings | null
[src]