Get Migrations
| lexmodelbuildingservice_get_migrations | R Documentation |
Gets a list of migrations between Amazon Lex V1 and Amazon Lex V2¶
Description¶
Gets a list of migrations between Amazon Lex V1 and Amazon Lex V2.
Usage¶
lexmodelbuildingservice_get_migrations(sortByAttribute, sortByOrder,
v1BotNameContains, migrationStatusEquals, maxResults, nextToken)
Arguments¶
sortByAttributeThe field to sort the list of migrations by. You can sort by the Amazon Lex V1 bot name or the date and time that the migration was started.
sortByOrderThe order so sort the list.
v1BotNameContainsFilters the list to contain only bots whose name contains the specified string. The string is matched anywhere in bot name.
migrationStatusEqualsFilters the list to contain only migrations in the specified state.
maxResultsThe maximum number of migrations to return in the response. The default is 10.
nextTokenA pagination token that fetches the next page of migrations. If the response to this operation is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of migrations, specify the pagination token in the request.
Value¶
A list with the following syntax:
list(
migrationSummaries = list(
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"
)
)
),
nextToken = "string"
)