interface RuntimeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.BedrockAgentCore.RuntimeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbedrockagentcore#RuntimeReference |
Java | software.amazon.awscdk.interfaces.bedrockagentcore.RuntimeReference |
Python | aws_cdk.interfaces.aws_bedrockagentcore.RuntimeReference |
TypeScript | aws-cdk-lib » interfaces » aws_bedrockagentcore » RuntimeReference |
A reference to a Runtime resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as interfaces_bedrockagentcore } from 'aws-cdk-lib/interfaces';
const runtimeReference: interfaces_bedrockagentcore.RuntimeReference = {
agentRuntimeArn: 'agentRuntimeArn',
agentRuntimeId: 'agentRuntimeId',
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | The ARN of the Runtime resource. |
| agent | string | The AgentRuntimeId of the Runtime resource. |
agentRuntimeArn
Type:
string
The ARN of the Runtime resource.
agentRuntimeId
Type:
string
The AgentRuntimeId of the Runtime resource.

.NET
Go
Java
Python
TypeScript