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

DeleteBotAliasRequest

import type { DeleteBotAliasRequest } from "https://aws-api.deno.dev/v0.4/services/lexmodelsv2.ts?docs=full";
interface DeleteBotAliasRequest {
botAliasId: string;
botId: string;
skipResourceInUseCheck?: boolean | null;
}

§Properties

§
botAliasId: string
[src]

The unique identifier of the bot alias to delete.

§
botId: string
[src]

The unique identifier of the bot associated with the alias to delete.

§
skipResourceInUseCheck?: boolean | null
[src]

By default, Amazon Lex checks if any other resource, such as a bot network, is using the bot alias before it is deleted and throws a ResourceInUseException exception if the alias is being used by another resource. Set this parameter to true to skip this check and remove the alias even if it is being used by another resource.