interface CfnAIPromptVersionProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Wisdom.CfnAIPromptVersionProps | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnAIPromptVersionProps | 
  Java | software.amazon.awscdk.services.wisdom.CfnAIPromptVersionProps | 
  Python | aws_cdk.aws_wisdom.CfnAIPromptVersionProps | 
  TypeScript  | aws-cdk-lib » aws_wisdom » CfnAIPromptVersionProps | 
Properties for defining a CfnAIPromptVersion.
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 cfnAIPromptVersionProps: wisdom.CfnAIPromptVersionProps = {
  aiPromptId: 'aiPromptId',
  assistantId: 'assistantId',
  // the properties below are optional
  modifiedTimeSeconds: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| ai | string | The identifier of the Amazon Q in Connect AI prompt. | 
| assistant | string | The identifier of the Amazon Q in Connect assistant. | 
| modified | number | The time the AI Prompt version was last modified in seconds. | 
aiPromptId
Type:
string
The identifier of the Amazon Q in Connect AI prompt.
assistantId
Type:
string
The identifier of the Amazon Q in Connect assistant.
Can be either the ID or the ARN. URLs cannot contain the ARN.
modifiedTimeSeconds?
Type:
number
(optional)
The time the AI Prompt version was last modified in seconds.

 .NET
 Go
 Java
 Python
 TypeScript