Create Agent Runtime Endpoint
| bedrockagentcorecontrol_create_agent_runtime_endpoint | R Documentation |
Creates an AgentCore Runtime endpoint¶
Description¶
Creates an AgentCore Runtime endpoint.
Usage¶
bedrockagentcorecontrol_create_agent_runtime_endpoint(agentRuntimeId,
name, agentRuntimeVersion, description, clientToken, tags)
Arguments¶
agentRuntimeId |
[required] The unique identifier of the AgentCore Runtime to create an endpoint for. |
name |
[required] The name of the AgentCore Runtime endpoint. |
agentRuntimeVersion |
The version of the AgentCore Runtime to use for the endpoint. |
description |
The description of the AgentCore Runtime endpoint. |
clientToken |
A unique, case-sensitive identifier to ensure idempotency of the request. |
tags |
A map of tag keys and values to assign to the agent runtime endpoint. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment. |
Value¶
A list with the following syntax:
list(
targetVersion = "string",
agentRuntimeEndpointArn = "string",
agentRuntimeArn = "string",
agentRuntimeId = "string",
endpointName = "string",
status = "CREATING"|"CREATE_FAILED"|"UPDATING"|"UPDATE_FAILED"|"READY"|"DELETING",
createdAt = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$create_agent_runtime_endpoint(
agentRuntimeId = "string",
name = "string",
agentRuntimeVersion = "string",
description = "string",
clientToken = "string",
tags = list(
"string"
)
)