interface AIAgentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Wisdom.AIAgentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awswisdom#AIAgentReference |
Java | software.amazon.awscdk.interfaces.wisdom.AIAgentReference |
Python | aws_cdk.interfaces.aws_wisdom.AIAgentReference |
TypeScript | aws-cdk-lib » interfaces » aws_wisdom » AIAgentReference |
A reference to a AIAgent 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_aws_wisdom } from 'aws-cdk-lib/interfaces';
const aIAgentReference: interfaces_aws_wisdom.AIAgentReference = {
aiAgentArn: 'aiAgentArn',
aiAgentId: 'aiAgentId',
assistantId: 'assistantId',
};
Properties
| Name | Type | Description |
|---|---|---|
| ai | string | The ARN of the AIAgent resource. |
| ai | string | The AIAgentId of the AIAgent resource. |
| assistant | string | The AssistantId of the AIAgent resource. |
aiAgentArn
Type:
string
The ARN of the AIAgent resource.
aiAgentId
Type:
string
The AIAgentId of the AIAgent resource.
assistantId
Type:
string
The AssistantId of the AIAgent resource.

.NET
Go
Java
Python
TypeScript