Class CfnFlow.FlowNodeInputProperty
Contains configurations for an input to a node.
Inheritance
Implements
Namespace: Amazon.CDK.AwsBedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FlowNodeInputProperty : Object, CfnFlow.IFlowNodeInputProperty
Syntax (vb)
Public Class FlowNodeInputProperty
Inherits Object
Implements CfnFlow.IFlowNodeInputProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_bedrock;
var flowNodeInputProperty = new FlowNodeInputProperty {
Expression = "expression",
Name = "name",
Type = "type"
};
Synopsis
Constructors
Flow |
Properties
Expression | An expression that formats the input for the node. |
Name | A name for the input that you can reference. |
Type | The data type of the input. |
Constructors
FlowNodeInputProperty()
public FlowNodeInputProperty()
Properties
Expression
An expression that formats the input for the node.
public string Expression { get; set; }
Property Value
System.
Remarks
For an explanation of how to create expressions, see Expressions in Prompt flows in Amazon Bedrock .
Name
A name for the input that you can reference.
public string Name { get; set; }
Property Value
System.
Remarks
Type
The data type of the input.
public string Type { get; set; }
Property Value
System.
Remarks
If the input doesn't match this type at runtime, a validation error will be thrown.