Interface NodeInputEvent.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<NodeInputEvent.Builder,
,NodeInputEvent> SdkBuilder<NodeInputEvent.Builder,
,NodeInputEvent> SdkPojo
- Enclosing class:
NodeInputEvent
@Mutable
@NotThreadSafe
public static interface NodeInputEvent.Builder
extends SdkPojo, CopyableBuilder<NodeInputEvent.Builder,NodeInputEvent>
-
Method Summary
Modifier and TypeMethodDescriptionfields
(Collection<NodeInputField> fields) A list of input fields provided to the node.fields
(Consumer<NodeInputField.Builder>... fields) A list of input fields provided to the node.fields
(NodeInputField... fields) A list of input fields provided to the node.The name of the node that received the inputs.The timestamp when the inputs were provided to the node.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 input fields provided to the node.
- Parameters:
fields
- A list of input fields provided to the node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
A list of input fields provided to the node.
- Parameters:
fields
- A list of input fields provided to the node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
A list of input fields provided to the node.
This is a convenience method that creates an instance of theNodeInputField.Builder
avoiding the need to create one manually viaNodeInputField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofields(List<NodeInputField>)
.- Parameters:
fields
- a consumer that will call methods onNodeInputField.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 received the inputs.
- Parameters:
nodeName
- The name of the node that received the inputs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamp
The timestamp when the inputs were provided to the node.
- Parameters:
timestamp
- The timestamp when the inputs were provided to the node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-