interface CfnAIPromptVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnAIPromptVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnAIPromptVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnAIPromptVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnAIPromptVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnAIPromptVersionMixinProps |
Properties for CfnAIPromptVersionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as wisdom_mixins } from '@aws-cdk/mixins-preview/aws-wisdom';
const cfnAIPromptVersionMixinProps: wisdom_mixins.CfnAIPromptVersionMixinProps = {
aiPromptId: 'aiPromptId',
assistantId: 'assistantId',
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
(optional)
The identifier of the Amazon Q in Connect AI prompt.
assistantId?
Type:
string
(optional)
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