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