interface CfnRuntimeEndpointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnRuntimeEndpointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnRuntimeEndpointMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnRuntimeEndpointMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnRuntimeEndpointMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » 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 { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const cfnRuntimeEndpointMixinProps: bedrockagentcore.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