Interface NodeOutputField.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<NodeOutputField.Builder,
,NodeOutputField> SdkBuilder<NodeOutputField.Builder,
,NodeOutputField> SdkPojo
- Enclosing class:
NodeOutputField
-
Method Summary
Modifier and TypeMethodDescriptiondefault NodeOutputField.Builder
content
(Consumer<NodeExecutionContent.Builder> content) The content of the output field, which can contain text or structured data.content
(NodeExecutionContent content) The content of the output field, which can contain text or structured data.The name of the output field as defined in the node's output schema.next
(Collection<NodeOutputNext> next) The next node that receives output data from this field.next
(Consumer<NodeOutputNext.Builder>... next) The next node that receives output data from this field.next
(NodeOutputNext... next) The next node that receives output data from this field.The data type of the output field for compatibility validation.type
(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 Details
-
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
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
The content of the output field, which can contain text or structured data.
This is a convenience method that creates an instance of theNodeExecutionContent.Builder
avoiding the need to create one manually viaNodeExecutionContent.builder()
.When the
Consumer
completes,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:
-
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
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
The next node that receives output data from this field.
This is a convenience method that creates an instance of theNodeOutputNext.Builder
avoiding the need to create one manually viaNodeOutputNext.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tonext(List<NodeOutputNext>)
.- 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:
-
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:
-
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:
-