Interface FlowTraceNodeOutputField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowTraceNodeOutputField.Builder,FlowTraceNodeOutputField>,SdkBuilder<FlowTraceNodeOutputField.Builder,FlowTraceNodeOutputField>,SdkPojo
- Enclosing class:
- FlowTraceNodeOutputField
@Mutable @NotThreadSafe public static interface FlowTraceNodeOutputField.Builder extends SdkPojo, CopyableBuilder<FlowTraceNodeOutputField.Builder,FlowTraceNodeOutputField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default FlowTraceNodeOutputField.Buildercontent(Consumer<FlowTraceNodeOutputContent.Builder> content)The content of the node output.FlowTraceNodeOutputField.Buildercontent(FlowTraceNodeOutputContent content)The content of the node output.FlowTraceNodeOutputField.Buildernext(Collection<FlowTraceNodeOutputNext> next)The next node that receives output data from this field.FlowTraceNodeOutputField.Buildernext(Consumer<FlowTraceNodeOutputNext.Builder>... next)The next node that receives output data from this field.FlowTraceNodeOutputField.Buildernext(FlowTraceNodeOutputNext... next)The next node that receives output data from this field.FlowTraceNodeOutputField.BuildernodeOutputName(String nodeOutputName)The name of the node output.FlowTraceNodeOutputField.Buildertype(String type)The data type of the output field for compatibility validation.FlowTraceNodeOutputField.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
-
nodeOutputName
FlowTraceNodeOutputField.Builder nodeOutputName(String nodeOutputName)
The name of the node output.
- Parameters:
nodeOutputName- The name of the node output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
FlowTraceNodeOutputField.Builder content(FlowTraceNodeOutputContent content)
The content of the node output.
- Parameters:
content- The content of the node output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
default FlowTraceNodeOutputField.Builder content(Consumer<FlowTraceNodeOutputContent.Builder> content)
The content of the node output.
This is a convenience method that creates an instance of theFlowTraceNodeOutputContent.Builderavoiding the need to create one manually viaFlowTraceNodeOutputContent.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocontent(FlowTraceNodeOutputContent).- Parameters:
content- a consumer that will call methods onFlowTraceNodeOutputContent.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
content(FlowTraceNodeOutputContent)
-
next
FlowTraceNodeOutputField.Builder next(Collection<FlowTraceNodeOutputNext> 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
FlowTraceNodeOutputField.Builder next(FlowTraceNodeOutputNext... 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
FlowTraceNodeOutputField.Builder next(Consumer<FlowTraceNodeOutputNext.Builder>... next)
The next node that receives output data from this field.
This is a convenience method that creates an instance of theFlowTraceNodeOutputNext.Builderavoiding the need to create one manually viaFlowTraceNodeOutputNext.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 onFlowTraceNodeOutputNext.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#next(java.util.Collection)
-
type
FlowTraceNodeOutputField.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
FlowTraceNodeOutputField.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
-
-