Get Agent Alias
| bedrockagent_get_agent_alias | R Documentation |
Gets information about an alias of an agent¶
Description¶
Gets information about an alias of an agent.
Usage¶
bedrockagent_get_agent_alias(agentId, agentAliasId)
Arguments¶
agentId |
[required] The unique identifier of the agent to which the alias to get information belongs. |
agentAliasId |
[required] The unique identifier of the alias for which to get information. |
Value¶
A list with the following syntax:
list(
agentAlias = list(
agentId = "string",
agentAliasId = "string",
agentAliasName = "string",
agentAliasArn = "string",
clientToken = "string",
description = "string",
routingConfiguration = list(
list(
agentVersion = "string",
provisionedThroughput = "string"
)
),
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
agentAliasHistoryEvents = list(
list(
routingConfiguration = list(
list(
agentVersion = "string",
provisionedThroughput = "string"
)
),
endDate = as.POSIXct(
"2015-01-01"
),
startDate = as.POSIXct(
"2015-01-01"
)
)
),
agentAliasStatus = "CREATING"|"PREPARED"|"FAILED"|"UPDATING"|"DELETING"|"DISSOCIATED",
failureReasons = list(
"string"
),
aliasInvocationState = "ACCEPT_INVOCATIONS"|"REJECT_INVOCATIONS"
)
)
Request syntax¶
svc$get_agent_alias(
agentId = "string",
agentAliasId = "string"
)