interface PromptInputVariableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnPromptPropsMixin.PromptInputVariableProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnPromptPropsMixin_PromptInputVariableProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnPromptPropsMixin.PromptInputVariableProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnPromptPropsMixin.PromptInputVariableProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnPromptPropsMixin » PromptInputVariableProperty |
Contains information about a variable in the prompt.
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 promptInputVariableProperty: bedrock_mixins.CfnPromptPropsMixin.PromptInputVariableProperty = {
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the variable. |
name?
Type:
string
(optional)
The name of the variable.

.NET
Go
Java
Python
TypeScript