Update Agent Runtime Endpoint
| bedrockagentcorecontrol_update_agent_runtime_endpoint | R Documentation |
Updates an existing Amazon Bedrock AgentCore Runtime endpoint¶
Description¶
Updates an existing Amazon Bedrock AgentCore Runtime endpoint.
Usage¶
bedrockagentcorecontrol_update_agent_runtime_endpoint(agentRuntimeId,
endpointName, agentRuntimeVersion, description, clientToken)
Arguments¶
agentRuntimeId |
[required] The unique identifier of the AgentCore Runtime associated with the endpoint. |
endpointName |
[required] The name of the AgentCore Runtime endpoint to update. |
agentRuntimeVersion |
The updated version of the AgentCore Runtime for the endpoint. |
description |
The updated description of the AgentCore Runtime endpoint. |
clientToken |
A unique, case-sensitive identifier to ensure idempotency of the request. |
Value¶
A list with the following syntax:
list(
liveVersion = "string",
targetVersion = "string",
agentRuntimeEndpointArn = "string",
agentRuntimeArn = "string",
status = "CREATING"|"CREATE_FAILED"|"UPDATING"|"UPDATE_FAILED"|"READY"|"DELETING",
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$update_agent_runtime_endpoint(
agentRuntimeId = "string",
endpointName = "string",
agentRuntimeVersion = "string",
description = "string",
clientToken = "string"
)