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

DeleteBotVersionRequest

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

§Properties

§
botId: string
[src]

The identifier of the bot that contains the version.

§
botVersion: string
[src]

The version of the bot to delete.

§
skipResourceInUseCheck?: boolean | null
[src]

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