interface AIAgentVersionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Wisdom.AIAgentVersionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awswisdom#AIAgentVersionReference |
Java | software.amazon.awscdk.interfaces.wisdom.AIAgentVersionReference |
Python | aws_cdk.interfaces.aws_wisdom.AIAgentVersionReference |
TypeScript | aws-cdk-lib » interfaces » aws_wisdom » AIAgentVersionReference |
A reference to a AIAgentVersion resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wisdom as interfaces_wisdom } from 'aws-cdk-lib/interfaces';
const aIAgentVersionReference: interfaces_wisdom.AIAgentVersionReference = {
aiAgentId: 'aiAgentId',
assistantId: 'assistantId',
versionNumber: 'versionNumber',
};
Properties
| Name | Type | Description |
|---|---|---|
| ai | string | The AIAgentId of the AIAgentVersion resource. |
| assistant | string | The AssistantId of the AIAgentVersion resource. |
| version | string | The VersionNumber of the AIAgentVersion resource. |
aiAgentId
Type:
string
The AIAgentId of the AIAgentVersion resource.
assistantId
Type:
string
The AssistantId of the AIAgentVersion resource.
versionNumber
Type:
string
The VersionNumber of the AIAgentVersion resource.

.NET
Go
Java
Python
TypeScript