interface PromptTemplateConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnFlowPropsMixin.PromptTemplateConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnFlowPropsMixin_PromptTemplateConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnFlowPropsMixin.PromptTemplateConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnFlowPropsMixin.PromptTemplateConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnFlowPropsMixin » PromptTemplateConfigurationProperty |
Contains the message for a prompt.
For more information, see Construct and store reusable prompts with Prompt management in Amazon Bedrock .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const promptTemplateConfigurationProperty: bedrock_mixins.CfnFlowPropsMixin.PromptTemplateConfigurationProperty = {
text: {
inputVariables: [{
name: 'name',
}],
text: 'text',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| text? | IResolvable | Text | Contains configurations for the text in a message for a prompt. |
text?
Type:
IResolvable | Text
(optional)
Contains configurations for the text in a message for a prompt.

.NET
Go
Java
Python
TypeScript