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

MigrationAlert

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

Provides information about alerts and warnings that Amazon Lex sends during a migration. The alerts include information about how to resolve the issue.

interface MigrationAlert {
details?: string[] | null;
message?: string | null;
referenceURLs?: string[] | null;
type?: MigrationAlertType | null;
}

§Properties

§
details?: string[] | null
[src]

Additional details about the alert.

§
message?: string | null
[src]

A message that describes why the alert was issued.

§
referenceURLs?: string[] | null
[src]

A link to the Amazon Lex documentation that describes how to resolve the alert.

§

The type of alert. There are two kinds of alerts:

  • ERROR - There was an issue with the migration that can't be resolved. The migration stops.
  • WARN - There was an issue with the migration that requires manual changes to the new Amazon Lex V2 bot. The migration continues.