Interface FlowExecutionOutputEvent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowExecutionOutputEvent.Builder,FlowExecutionOutputEvent>,SdkBuilder<FlowExecutionOutputEvent.Builder,FlowExecutionOutputEvent>,SdkPojo
- Enclosing class:
- FlowExecutionOutputEvent
@Mutable @NotThreadSafe public static interface FlowExecutionOutputEvent.Builder extends SdkPojo, CopyableBuilder<FlowExecutionOutputEvent.Builder,FlowExecutionOutputEvent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowExecutionOutputEvent.Builderfields(Collection<FlowOutputField> fields)A list of output fields produced by the flow.FlowExecutionOutputEvent.Builderfields(Consumer<FlowOutputField.Builder>... fields)A list of output fields produced by the flow.FlowExecutionOutputEvent.Builderfields(FlowOutputField... fields)A list of output fields produced by the flow.FlowExecutionOutputEvent.BuildernodeName(String nodeName)The name of the node that produces the outputs.FlowExecutionOutputEvent.Buildertimestamp(Instant timestamp)The timestamp when the outputs are produced.-
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
-
fields
FlowExecutionOutputEvent.Builder fields(Collection<FlowOutputField> fields)
A list of output fields produced by the flow.
- Parameters:
fields- A list of output fields produced by the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
FlowExecutionOutputEvent.Builder fields(FlowOutputField... fields)
A list of output fields produced by the flow.
- Parameters:
fields- A list of output fields produced by the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
FlowExecutionOutputEvent.Builder fields(Consumer<FlowOutputField.Builder>... fields)
A list of output fields produced by the flow.
This is a convenience method that creates an instance of theFlowOutputField.Builderavoiding the need to create one manually viaFlowOutputField.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#fields(List.) - Parameters:
fields- a consumer that will call methods onFlowOutputField.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#fields(java.util.Collection)
-
nodeName
FlowExecutionOutputEvent.Builder nodeName(String nodeName)
The name of the node that produces the outputs.
- Parameters:
nodeName- The name of the node that produces the outputs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamp
FlowExecutionOutputEvent.Builder timestamp(Instant timestamp)
The timestamp when the outputs are produced.
- Parameters:
timestamp- The timestamp when the outputs are produced.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-