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

BotAliasHistoryEvent

import type { BotAliasHistoryEvent } from "https://aws-api.deno.dev/v0.4/services/lexmodelsv2.ts?docs=full";

Provides a record of an event that affects a bot alias. For example, when the version of a bot that the alias points to changes.

interface BotAliasHistoryEvent {
botVersion?: string | null;
endDate?: Date | number | null;
startDate?: Date | number | null;
}

§Properties

§
botVersion?: string | null
[src]

The version of the bot that was used in the event.

§
endDate?: Date | number | null
[src]

The date and time that the event ended.

§
startDate?: Date | number | null
[src]

The date and time that the event started.