interface CfnAIPromptVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Wisdom.CfnAIPromptVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswisdom#CfnAIPromptVersionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.wisdom.CfnAIPromptVersionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_wisdom.CfnAIPromptVersionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wisdom » 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 { aws_wisdom as wisdom } from '@aws-cdk/cfn-property-mixins';
const cfnAIPromptVersionMixinProps: wisdom.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