List Agent Aliases
bedrockagent_list_agent_aliases | R Documentation |
Lists the aliases of an agent and information about each one¶
Description¶
Lists the aliases of an agent and information about each one.
Usage¶
bedrockagent_list_agent_aliases(agentId, maxResults, nextToken)
Arguments¶
agentId |
[required] The unique identifier of the agent. |
maxResults |
The maximum number of results to return in the response. If the
total number of results is greater than this value, use the token
returned in the response in the |
nextToken |
If the total number of results is greater than the
|
Value¶
A list with the following syntax:
list(
agentAliasSummaries = list(
list(
agentAliasId = "string",
agentAliasName = "string",
agentAliasStatus = "CREATING"|"PREPARED"|"FAILED"|"UPDATING"|"DELETING"|"DISSOCIATED",
createdAt = as.POSIXct(
"2015-01-01"
),
description = "string",
routingConfiguration = list(
list(
agentVersion = "string",
provisionedThroughput = "string"
)
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_agent_aliases(
agentId = "string",
maxResults = 123,
nextToken = "string"
)