Interface NodeOutputField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NodeOutputField.Builder,NodeOutputField>,SdkBuilder<NodeOutputField.Builder,NodeOutputField>,SdkPojo
- Enclosing class:
- NodeOutputField
@Mutable @NotThreadSafe public static interface NodeOutputField.Builder extends SdkPojo, CopyableBuilder<NodeOutputField.Builder,NodeOutputField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default NodeOutputField.Buildercontent(Consumer<NodeExecutionContent.Builder> content)The content of the output field, which can contain text or structured data.NodeOutputField.Buildercontent(NodeExecutionContent content)The content of the output field, which can contain text or structured data.NodeOutputField.Buildername(String name)The name of the output field as defined in the node's output schema.NodeOutputField.Buildernext(Collection<NodeOutputNext> next)The next node that receives output data from this field.NodeOutputField.Buildernext(Consumer<NodeOutputNext.Builder>... next)The next node that receives output data from this field.NodeOutputField.Buildernext(NodeOutputNext... next)The next node that receives output data from this field.NodeOutputField.Buildertype(String type)The data type of the output field for compatibility validation.NodeOutputField.Buildertype(FlowNodeIODataType type)The data type of the output field for compatibility validation.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
NodeOutputField.Builder name(String name)
The name of the output field as defined in the node's output schema.
- Parameters:
name- The name of the output field as defined in the node's output schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
NodeOutputField.Builder content(NodeExecutionContent content)
The content of the output field, which can contain text or structured data.
- Parameters:
content- The content of the output field, which can contain text or structured data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
default NodeOutputField.Builder content(Consumer<NodeExecutionContent.Builder> content)
The content of the output field, which can contain text or structured data.
This is a convenience method that creates an instance of theNodeExecutionContent.Builderavoiding the need to create one manually viaNodeExecutionContent.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocontent(NodeExecutionContent).- Parameters:
content- a consumer that will call methods onNodeExecutionContent.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
content(NodeExecutionContent)
-
next
NodeOutputField.Builder next(Collection<NodeOutputNext> next)
The next node that receives output data from this field.
- Parameters:
next- The next node that receives output data from this field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
next
NodeOutputField.Builder next(NodeOutputNext... next)
The next node that receives output data from this field.
- Parameters:
next- The next node that receives output data from this field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
next
NodeOutputField.Builder next(Consumer<NodeOutputNext.Builder>... next)
The next node that receives output data from this field.
This is a convenience method that creates an instance of theNodeOutputNext.Builderavoiding the need to create one manually viaNodeOutputNext.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#next(List.) - Parameters:
next- a consumer that will call methods onNodeOutputNext.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#next(java.util.Collection)
-
type
NodeOutputField.Builder type(String type)
The data type of the output field for compatibility validation.
- Parameters:
type- The data type of the output field for compatibility validation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowNodeIODataType,FlowNodeIODataType
-
type
NodeOutputField.Builder type(FlowNodeIODataType type)
The data type of the output field for compatibility validation.
- Parameters:
type- The data type of the output field for compatibility validation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowNodeIODataType,FlowNodeIODataType
-
-