interface AIPromptTemplateConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnAIPrompt.AIPromptTemplateConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnAIPrompt_AIPromptTemplateConfigurationProperty |
Java | software.amazon.awscdk.services.wisdom.CfnAIPrompt.AIPromptTemplateConfigurationProperty |
Python | aws_cdk.aws_wisdom.CfnAIPrompt.AIPromptTemplateConfigurationProperty |
TypeScript | aws-cdk-lib » aws_wisdom » CfnAIPrompt » AIPromptTemplateConfigurationProperty |
A typed union that specifies the configuration for a prompt template based on its type.
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 aIPromptTemplateConfigurationProperty: wisdom.CfnAIPrompt.AIPromptTemplateConfigurationProperty = {
textFullAiPromptEditTemplateConfiguration: {
text: 'text',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| text | IResolvable | Text | The configuration for a prompt template that supports full textual prompt configuration using a YAML prompt. |
textFullAiPromptEditTemplateConfiguration
Type:
IResolvable | Text
The configuration for a prompt template that supports full textual prompt configuration using a YAML prompt.

.NET
Go
Java
Python
TypeScript