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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowExecutionInputEvent.Builderfields(Collection<FlowInputField> fields)A list of input fields provided to the flow.FlowExecutionInputEvent.Builderfields(Consumer<FlowInputField.Builder>... fields)A list of input fields provided to the flow.FlowExecutionInputEvent.Builderfields(FlowInputField... fields)A list of input fields provided to the flow.FlowExecutionInputEvent.BuildernodeName(String nodeName)The name of the node that receives the inputs.FlowExecutionInputEvent.Buildertimestamp(Instant timestamp)The timestamp when the inputs are provided.-
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
FlowExecutionInputEvent.Builder fields(Collection<FlowInputField> 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
FlowExecutionInputEvent.Builder fields(FlowInputField... 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
FlowExecutionInputEvent.Builder fields(Consumer<FlowInputField.Builder>... 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 to#fields(List.) - 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:
#fields(java.util.Collection)
-
nodeName
FlowExecutionInputEvent.Builder nodeName(String 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
FlowExecutionInputEvent.Builder timestamp(Instant 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.
-
-