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.
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
list_bot_aliases
operation contains more results than specified in themaxResults
parameter, a token is returned in the response. Use that token in thenextToken
parameter 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"
)