interface AIPromptReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Wisdom.AIPromptReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awswisdom#AIPromptReference |
Java | software.amazon.awscdk.interfaces.wisdom.AIPromptReference |
Python | aws_cdk.interfaces.aws_wisdom.AIPromptReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_wisdom } from 'aws-cdk-lib/interfaces';
const aIPromptReference: interfaces_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