Skip to content

Get Agent Runtime Endpoint

bedrockagentcorecontrol_get_agent_runtime_endpoint R Documentation

Gets information about an Amazon Secure AgentEndpoint

Description

Gets information about an Amazon Secure AgentEndpoint.

Usage

bedrockagentcorecontrol_get_agent_runtime_endpoint(agentRuntimeId,
  endpointName)

Arguments

agentRuntimeId

[required] The unique identifier of the AgentCore Runtime associated with the endpoint.

endpointName

[required] The name of the AgentCore Runtime endpoint to retrieve.

Value

A list with the following syntax:

list(
  liveVersion = "string",
  targetVersion = "string",
  agentRuntimeEndpointArn = "string",
  agentRuntimeArn = "string",
  description = "string",
  status = "CREATING"|"CREATE_FAILED"|"UPDATING"|"UPDATE_FAILED"|"READY"|"DELETING",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  failureReason = "string",
  name = "string",
  id = "string"
)

Request syntax

svc$get_agent_runtime_endpoint(
  agentRuntimeId = "string",
  endpointName = "string"
)