List Bot Aliases
| lexmodelsv2_list_bot_aliases | R Documentation |
Gets a list of aliases for the specified bot¶
Description¶
Gets a list of aliases for the specified bot.
Usage¶
Arguments¶
botId[required] The identifier of the bot to list aliases for.
maxResultsThe maximum number of aliases to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned.
nextTokenIf the response from the
list_bot_aliasesoperation contains more results than specified in themaxResultsparameter, a token is returned in the response. Use that token in thenextTokenparameter to return the next page of results.
Value¶
A list with the following syntax:
list(
botAliasSummaries = list(
list(
botAliasId = "string",
botAliasName = "string",
description = "string",
botVersion = "string",
botAliasStatus = "Creating"|"Available"|"Deleting"|"Failed",
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string",
botId = "string"
)