Skip to content

Get Migration

lexmodelbuildingservice_get_migration R Documentation

Provides details about an ongoing or complete migration from an Amazon Lex V1 bot to an Amazon Lex V2 bot

Description

Provides details about an ongoing or complete migration from an Amazon Lex V1 bot to an Amazon Lex V2 bot. Use this operation to view the migration alerts and warnings related to the migration.

Usage

lexmodelbuildingservice_get_migration(migrationId)

Arguments

migrationId

[required] The unique identifier of the migration to view. The migrationID is returned by the operation.

Value

A list with the following syntax:

list(
  migrationId = "string",
  v1BotName = "string",
  v1BotVersion = "string",
  v1BotLocale = "de-DE"|"en-AU"|"en-GB"|"en-IN"|"en-US"|"es-419"|"es-ES"|"es-US"|"fr-FR"|"fr-CA"|"it-IT"|"ja-JP"|"ko-KR",
  v2BotId = "string",
  v2BotRole = "string",
  migrationStatus = "IN_PROGRESS"|"COMPLETED"|"FAILED",
  migrationStrategy = "CREATE_NEW"|"UPDATE_EXISTING",
  migrationTimestamp = as.POSIXct(
    "2015-01-01"
  ),
  alerts = list(
    list(
      type = "ERROR"|"WARN",
      message = "string",
      details = list(
        "string"
      ),
      referenceURLs = list(
        "string"
      )
    )
  )
)

Request syntax

svc$get_migration(
  migrationId = "string"
)