Interface FlowExecutionInputEvent.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<FlowExecutionInputEvent.Builder,,FlowExecutionInputEvent> SdkBuilder<FlowExecutionInputEvent.Builder,,FlowExecutionInputEvent> SdkPojo
- Enclosing class:
FlowExecutionInputEvent
@Mutable
@NotThreadSafe
public static interface FlowExecutionInputEvent.Builder
extends SdkPojo, CopyableBuilder<FlowExecutionInputEvent.Builder,FlowExecutionInputEvent>
-
Method Summary
Modifier and TypeMethodDescriptionfields(Collection<FlowInputField> fields) A list of input fields provided to the flow.fields(Consumer<FlowInputField.Builder>... fields) A list of input fields provided to the flow.fields(FlowInputField... fields) A list of input fields provided to the flow.The name of the node that receives the inputs.The timestamp when the inputs are provided.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
nodeName
The name of the node that receives the inputs.
- Parameters:
nodeName- The name of the node that receives the inputs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamp
The timestamp when the inputs are provided.
- Parameters:
timestamp- The timestamp when the inputs are provided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
A list of input fields provided to the flow.
- Parameters:
fields- A list of input fields provided to the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
A list of input fields provided to the flow.
- Parameters:
fields- A list of input fields provided to the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
A list of input fields provided to the flow.
This is a convenience method that creates an instance of theFlowInputField.Builderavoiding the need to create one manually viaFlowInputField.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofields(List<FlowInputField>).- Parameters:
fields- a consumer that will call methods onFlowInputField.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-