interface CfnRuntimeEndpointProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntimeEndpointProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntimeEndpointProps |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntimeEndpointProps |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntimeEndpointProps |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntimeEndpointProps |
Properties for defining a CfnRuntimeEndpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const cfnRuntimeEndpointProps: bedrockagentcore.CfnRuntimeEndpointProps = {
agentRuntimeId: 'agentRuntimeId',
name: 'name',
// the properties below are optional
agentRuntimeVersion: 'agentRuntimeVersion',
description: 'description',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | The agent runtime ID. |
| name | string | The name of the AgentCore Runtime endpoint. |
| agent | string | The version of the agent. |
| description? | string | Contains information about an agent runtime endpoint. |
| tags? | { [string]: string } | The tags for the AgentCore Runtime endpoint. |
agentRuntimeId
Type:
string
The agent runtime ID.
name
Type:
string
The name of the AgentCore Runtime endpoint.
agentRuntimeVersion?
Type:
string
(optional)
The version of the agent.
description?
Type:
string
(optional)
Contains information about an agent runtime endpoint.
An agent runtime is the execution environment for a Amazon Bedrock Agent.
tags?
Type:
{ [string]: string }
(optional)
The tags for the AgentCore Runtime endpoint.

.NET
Go
Java
Python
TypeScript