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
Modifier and TypeMethodDescriptionfields
(Collection<FlowOutputField> fields) A list of output fields produced by the flow.fields
(Consumer<FlowOutputField.Builder>... fields) A list of output fields produced by the flow.fields
(FlowOutputField... fields) A list of output fields produced by the flow.The name of the node that produces the outputs.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 Details
-
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
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
A list of output fields produced by the flow.
This is a convenience method that creates an instance of theFlowOutputField.Builder
avoiding the need to create one manually viaFlowOutputField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofields(List<FlowOutputField>)
.- 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:
-
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
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.
-