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

GetMigrationResponse

import type { GetMigrationResponse } from "https://aws-api.deno.dev/v0.3/services/lexmodelbuildingservice.ts?docs=full";
interface GetMigrationResponse {
alerts?: MigrationAlert[] | null;
migrationId?: string | null;
migrationStatus?: MigrationStatus | null;
migrationStrategy?: MigrationStrategy | null;
migrationTimestamp?: Date | number | null;
v1BotLocale?: Locale | null;
v1BotName?: string | null;
v1BotVersion?: string | null;
v2BotId?: string | null;
v2BotRole?: string | null;
}

§Properties

§
alerts?: MigrationAlert[] | null
[src]

A list of alerts and warnings that indicate issues with the migration for the Amazon Lex V1 bot to Amazon Lex V2. You receive a warning when an Amazon Lex V1 feature has a different implementation if Amazon Lex V2.

For more information, see Migrating a bot in the Amazon Lex V2 developer guide.

§
migrationId?: string | null
[src]

The unique identifier of the migration. This is the same as the identifier used when calling the GetMigration operation.

§
migrationStatus?: MigrationStatus | null
[src]

Indicates the status of the migration. When the status is COMPLETE the migration is finished and the bot is available in Amazon Lex V2. There may be alerts and warnings that need to be resolved to complete the migration.

§
migrationStrategy?: MigrationStrategy | null
[src]

The strategy used to conduct the migration.

  • CREATE_NEW - Creates a new Amazon Lex V2 bot and migrates the Amazon Lex V1 bot to the new bot.
  • UPDATE_EXISTING - Overwrites the existing Amazon Lex V2 bot metadata and the locale being migrated. It doesn't change any other locales in the Amazon Lex V2 bot. If the locale doesn't exist, a new locale is created in the Amazon Lex V2 bot.
§
migrationTimestamp?: Date | number | null
[src]

The date and time that the migration started.

§
v1BotLocale?: Locale | null
[src]

The locale of the Amazon Lex V1 bot migrated to Amazon Lex V2.

§
v1BotName?: string | null
[src]

The name of the Amazon Lex V1 bot migrated to Amazon Lex V2.

§
v1BotVersion?: string | null
[src]

The version of the Amazon Lex V1 bot migrated to Amazon Lex V2.

§
v2BotId?: string | null
[src]

The unique identifier of the Amazon Lex V2 bot that the Amazon Lex V1 is being migrated to.

§
v2BotRole?: string | null
[src]

The IAM role that Amazon Lex uses to run the Amazon Lex V2 bot.