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

UpdateBotAliasRequest

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

§Properties

§
botAliasId: string
[src]

The unique identifier of the bot alias.

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

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

§
botAliasName: string
[src]

The new name to assign to the bot alias.

§
botId: string
[src]

The identifier of the bot with the updated alias.

§
botVersion?: string | null
[src]

The new bot version to assign to the bot alias.

§
conversationLogSettings?: ConversationLogSettings | null
[src]

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

§
description?: string | null
[src]

The new description to assign to the bot alias.

§
sentimentAnalysisSettings?: SentimentAnalysisSettings | null
[src]