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

PutBotAliasRequest

import type { PutBotAliasRequest } from "https://aws-api.deno.dev/v0.3/services/lexmodelbuildingservice.ts?docs=full";
interface PutBotAliasRequest {
botName: string;
botVersion: string;
checksum?: string | null;
conversationLogs?: ConversationLogsRequest | null;
description?: string | null;
name: string;
tags?: Tag[] | null;
}

§Properties

§
botName: string
[src]

The name of the bot.

§
botVersion: string
[src]

The version of the bot.

§
checksum?: string | null
[src]

Identifies a specific revision of the $LATEST version.

When you create a new bot alias, leave the checksum field blank. If you specify a checksum you get a BadRequestException exception.

When you want to update a bot alias, set the checksum field to the checksum of the most recent revision of the $LATEST version. If you don't specify the checksum field, or if the checksum does not match the $LATEST version, you get a PreconditionFailedException exception.

§
conversationLogs?: ConversationLogsRequest | null
[src]

Settings for conversation logs for the alias.

§
description?: string | null
[src]

A description of the alias.

§
name: string
[src]

The name of the alias. The name is not case sensitive.

§
tags?: Tag[] | 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 PutBotAlias operation to update the tags on a bot alias. To update tags, use the TagResource operation.