Interface FlowNodeInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowNodeInput.Builder,FlowNodeInput>,SdkBuilder<FlowNodeInput.Builder,FlowNodeInput>,SdkPojo
- Enclosing class:
- FlowNodeInput
public static interface FlowNodeInput.Builder extends SdkPojo, CopyableBuilder<FlowNodeInput.Builder,FlowNodeInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowNodeInput.Builderexpression(String expression)An expression that formats the input for the node.FlowNodeInput.Buildername(String name)A name for the input that you can reference.FlowNodeInput.Buildertype(String type)The data type of the input.FlowNodeInput.Buildertype(FlowNodeIODataType type)The data type of the input.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
expression
FlowNodeInput.Builder expression(String expression)
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.
- Parameters:
expression- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
FlowNodeInput.Builder name(String name)
A name for the input that you can reference.
- Parameters:
name- A name for the input that you can reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
FlowNodeInput.Builder type(String type)
The data type of the input. If the input doesn't match this type at runtime, a validation error will be thrown.
- Parameters:
type- The data type of the input. If the input doesn't match this type at runtime, a validation error will be thrown.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowNodeIODataType,FlowNodeIODataType
-
type
FlowNodeInput.Builder type(FlowNodeIODataType type)
The data type of the input. If the input doesn't match this type at runtime, a validation error will be thrown.
- Parameters:
type- The data type of the input. If the input doesn't match this type at runtime, a validation error will be thrown.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowNodeIODataType,FlowNodeIODataType
-
-