Interface CfnFlow.FlowNodeInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlow.FlowNodeInputProperty.Jsii$Proxy
- Enclosing class:
CfnFlow
@Stability(Stable)
public static interface CfnFlow.FlowNodeInputProperty
extends software.amazon.jsii.JsiiSerializable
Contains configurations for an input in an Amazon Bedrock Flows node.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.bedrock.*; FlowNodeInputProperty flowNodeInputProperty = FlowNodeInputProperty.builder() .expression("expression") .name("name") .type("type") // the properties below are optional .category("category") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlow.FlowNodeInputProperty
static final class
An implementation forCfnFlow.FlowNodeInputProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExpression
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 .
- See Also:
-
getName
Specifies a name for the input that you can reference.- See Also:
-
getType
Specifies the data type of the input.If the input doesn't match this type at runtime, a validation error will be thrown.
- See Also:
-
getCategory
Specifies how input data flows between iterations in a DoWhile loop.LoopCondition
- Controls whether the loop continues by evaluating condition expressions against the input data. Use this category to define the condition that determines if the loop should continue.ReturnValueToLoopStart
- Defines data to pass back to the start of the loop's next iteration. Use this category for variables that you want to update for each loop iteration.ExitLoop
- Defines the value that's available once the loop ends. Use this category to expose loop results to nodes outside the loop.
- See Also:
-
builder
-