interface FlowNodeInputProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.aws_bedrock.CfnFlowVersion.FlowNodeInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnFlowVersion_FlowNodeInputProperty |
Java | software.amazon.awscdk.services.bedrock.CfnFlowVersion.FlowNodeInputProperty |
Python | aws_cdk.aws_bedrock.CfnFlowVersion.FlowNodeInputProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnFlowVersion » FlowNodeInputProperty |
Contains configurations for an input to a node.
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-lib';
const flowNodeInputProperty: bedrock.CfnFlowVersion.FlowNodeInputProperty = {
expression: 'expression',
name: 'name',
type: 'type',
};
Properties
Name | Type | Description |
---|---|---|
expression | string | An expression that formats the input for the node. |
name | string | A name for the input that you can reference. |
type | string | The data type of the input. |
expression
Type:
string
An expression that formats the input for the node.
For an explanation of how to create expressions, see Expressions in Prompt flows in Amazon Bedrock .
name
Type:
string
A name for the input that you can reference.
type
Type:
string
The data type of the input.
If the input doesn't match this type at runtime, a validation error will be thrown.