List Agent Runtime Endpoints
| bedrockagentcorecontrol_list_agent_runtime_endpoints | R Documentation |
Lists all endpoints for a specific Amazon Secure Agent¶
Description¶
Lists all endpoints for a specific Amazon Secure Agent.
Usage¶
bedrockagentcorecontrol_list_agent_runtime_endpoints(agentRuntimeId,
maxResults, nextToken)
Arguments¶
agentRuntimeId |
[required] The unique identifier of the AgentCore Runtime to list endpoints for. |
maxResults |
The maximum number of results to return in the response. |
nextToken |
A token to retrieve the next page of results. |
Value¶
A list with the following syntax:
list(
runtimeEndpoints = list(
list(
name = "string",
liveVersion = "string",
targetVersion = "string",
agentRuntimeEndpointArn = "string",
agentRuntimeArn = "string",
status = "CREATING"|"CREATE_FAILED"|"UPDATING"|"UPDATE_FAILED"|"READY"|"DELETING",
id = "string",
description = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_agent_runtime_endpoints(
agentRuntimeId = "string",
maxResults = 123,
nextToken = "string"
)