interface CfnRuntimeEndpointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnRuntimeEndpointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnRuntimeEndpointMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnRuntimeEndpointMixinProps |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnRuntimeEndpointMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnRuntimeEndpointMixinProps |
Properties for CfnRuntimeEndpointPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
const cfnRuntimeEndpointMixinProps: bedrockagentcore_mixins.CfnRuntimeEndpointMixinProps = {
agentRuntimeId: 'agentRuntimeId',
agentRuntimeVersion: 'agentRuntimeVersion',
description: 'description',
name: 'name',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | The agent runtime ID. |
| agent | string | The version of the agent. |
| description? | string | Contains information about an agent runtime endpoint. |
| name? | string | The name of the AgentCore Runtime endpoint. |
| tags? | { [string]: string } | The tags for the AgentCore Runtime endpoint. |
agentRuntimeId?
Type:
string
(optional)
The agent runtime ID.
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.
name?
Type:
string
(optional)
The name of the AgentCore Runtime endpoint.
tags?
Type:
{ [string]: string }
(optional)
The tags for the AgentCore Runtime endpoint.

.NET
Go
Java
Python
TypeScript