interface AIPromptReference
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Wisdom.AIPromptReference | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#AIPromptReference | 
  Java | software.amazon.awscdk.services.wisdom.AIPromptReference | 
  Python | aws_cdk.aws_wisdom.AIPromptReference | 
  TypeScript  | aws-cdk-lib » aws_wisdom » AIPromptReference | 
A reference to a AIPrompt 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 wisdom } from 'aws-cdk-lib';
const aIPromptReference: wisdom.AIPromptReference = {
  aiPromptArn: 'aiPromptArn',
  aiPromptId: 'aiPromptId',
  assistantId: 'assistantId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| ai | string | The ARN of the AIPrompt resource. | 
| ai | string | The AIPromptId of the AIPrompt resource. | 
| assistant | string | The AssistantId of the AIPrompt resource. | 
aiPromptArn
Type:
string
The ARN of the AIPrompt resource.
aiPromptId
Type:
string
The AIPromptId of the AIPrompt resource.
assistantId
Type:
string
The AssistantId of the AIPrompt resource.

 .NET
 Go
 Java
 Python
 TypeScript