Skip to content

Bedrock Agentcore Control  >  Operations  >  create_agent_runtime_endpoint

create_agent_runtime_endpoint

Operation

create_agent_runtime_endpoint async

create_agent_runtime_endpoint(input: CreateAgentRuntimeEndpointInput, plugins: list[Plugin] | None = None) -> CreateAgentRuntimeEndpointOutput

Creates an AgentCore Runtime endpoint.

Parameters:

Name Type Description Default
input CreateAgentRuntimeEndpointInput

An instance of CreateAgentRuntimeEndpointInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
CreateAgentRuntimeEndpointOutput

An instance of CreateAgentRuntimeEndpointOutput.

Input

CreateAgentRuntimeEndpointInput dataclass

Dataclass for CreateAgentRuntimeEndpointInput structure.

Attributes

agent_runtime_id class-attribute instance-attribute
agent_runtime_id: str | None = None

The unique identifier of the AgentCore Runtime to create an endpoint for.

agent_runtime_version class-attribute instance-attribute
agent_runtime_version: str | None = None

The version of the AgentCore Runtime to use for the endpoint.

client_token class-attribute instance-attribute
client_token: str | None = None

A unique, case-sensitive identifier to ensure idempotency of the request.

description class-attribute instance-attribute
description: str | None = None

The description of the AgentCore Runtime endpoint.

name class-attribute instance-attribute
name: str | None = field(repr=False, default=None)

The name of the AgentCore Runtime endpoint.

tags class-attribute instance-attribute
tags: dict[str, str] | None = None

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.

Output

CreateAgentRuntimeEndpointOutput dataclass

Dataclass for CreateAgentRuntimeEndpointOutput structure.

Attributes

agent_runtime_arn instance-attribute
agent_runtime_arn: str

The Amazon Resource Name (ARN) of the AgentCore Runtime.

agent_runtime_endpoint_arn instance-attribute
agent_runtime_endpoint_arn: str

The Amazon Resource Name (ARN) of the AgentCore Runtime endpoint.

agent_runtime_id class-attribute instance-attribute
agent_runtime_id: str | None = None

The unique identifier of the AgentCore Runtime.

created_at instance-attribute
created_at: datetime

The timestamp when the AgentCore Runtime endpoint was created.

endpoint_name class-attribute instance-attribute
endpoint_name: str | None = field(repr=False, default=None)

The name of the AgentCore Runtime endpoint.

status instance-attribute

The current status of the AgentCore Runtime endpoint.

target_version instance-attribute
target_version: str

The target version of the AgentCore Runtime for the endpoint.