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

CreateBotAliasRequest

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

§Properties

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

Maps configuration information to a specific locale. You can use this parameter to specify a specific Lambda function to run different functions in different locales.

§
botAliasName: string
[src]

The alias to create. The name must be unique for the bot.

§
botId: string
[src]

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

§
botVersion?: string | null
[src]

The version of the bot that this alias points to. You can use the UpdateBotAlias operation to change the bot version associated with the alias.

§
conversationLogSettings?: ConversationLogSettings | null
[src]

Specifies whether Amazon Lex logs text and audio for a conversation with the bot. When you enable conversation logs, text logs store text input, transcripts of audio input, and associated metadata in Amazon CloudWatch Logs. Audio logs store audio input in Amazon S3.

§
description?: string | null
[src]

A description of the alias. Use this description to help identify the alias.

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

A list of tags to add to the bot alias. You can only add tags when you create an alias, you can't use the UpdateBotAlias operation to update the tags on a bot alias. To update tags, use the TagResource operation.