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

.NET
Go
Java
Python
TypeScript