interface AgentAliasReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.AgentAliasReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#AgentAliasReference |
Java | software.amazon.awscdk.services.bedrock.AgentAliasReference |
Python | aws_cdk.aws_bedrock.AgentAliasReference |
TypeScript | aws-cdk-lib » aws_bedrock » AgentAliasReference |
A reference to a AgentAlias resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const agentAliasReference: bedrock.AgentAliasReference = {
agentAliasArn: 'agentAliasArn',
agentAliasId: 'agentAliasId',
agentId: 'agentId',
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | The ARN of the AgentAlias resource. |
| agent | string | The AgentAliasId of the AgentAlias resource. |
| agent | string | The AgentId of the AgentAlias resource. |
agentAliasArn
Type:
string
The ARN of the AgentAlias resource.
agentAliasId
Type:
string
The AgentAliasId of the AgentAlias resource.
agentId
Type:
string
The AgentId of the AgentAlias resource.

.NET
Go
Java
Python
TypeScript