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¶
lexmodelsv2_list_bot_aliases(botId, maxResults, nextToken)
Arguments¶
botId |
[required] The identifier of the bot to list aliases for. |
maxResults |
The 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. |
nextToken |
If the response from the |
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"
)
Request syntax¶
svc$list_bot_aliases(
botId = "string",
maxResults = 123,
nextToken = "string"
)