interface PromptTemplateConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnFlowPropsMixin.PromptTemplateConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnFlowPropsMixin_PromptTemplateConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnFlowPropsMixin.PromptTemplateConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnFlowPropsMixin.PromptTemplateConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const promptTemplateConfigurationProperty: bedrock.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