Interface FlowTraceNodeInputEvent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowTraceNodeInputEvent.Builder,FlowTraceNodeInputEvent>,SdkBuilder<FlowTraceNodeInputEvent.Builder,FlowTraceNodeInputEvent>,SdkPojo
- Enclosing class:
- FlowTraceNodeInputEvent
@Mutable @NotThreadSafe public static interface FlowTraceNodeInputEvent.Builder extends SdkPojo, CopyableBuilder<FlowTraceNodeInputEvent.Builder,FlowTraceNodeInputEvent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowTraceNodeInputEvent.Builderfields(Collection<FlowTraceNodeInputField> fields)An array of objects containing information about each field in the input.FlowTraceNodeInputEvent.Builderfields(Consumer<FlowTraceNodeInputField.Builder>... fields)An array of objects containing information about each field in the input.FlowTraceNodeInputEvent.Builderfields(FlowTraceNodeInputField... fields)An array of objects containing information about each field in the input.FlowTraceNodeInputEvent.BuildernodeName(String nodeName)The name of the node that received the input.FlowTraceNodeInputEvent.Buildertimestamp(Instant timestamp)The date and time that the trace was returned.-
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
FlowTraceNodeInputEvent.Builder fields(Collection<FlowTraceNodeInputField> fields)
An array of objects containing information about each field in the input.
- Parameters:
fields- An array of objects containing information about each field in the input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
FlowTraceNodeInputEvent.Builder fields(FlowTraceNodeInputField... fields)
An array of objects containing information about each field in the input.
- Parameters:
fields- An array of objects containing information about each field in the input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
FlowTraceNodeInputEvent.Builder fields(Consumer<FlowTraceNodeInputField.Builder>... fields)
An array of objects containing information about each field in the input.
This is a convenience method that creates an instance of theFlowTraceNodeInputField.Builderavoiding the need to create one manually viaFlowTraceNodeInputField.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 onFlowTraceNodeInputField.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#fields(java.util.Collection)
-
nodeName
FlowTraceNodeInputEvent.Builder nodeName(String nodeName)
The name of the node that received the input.
- Parameters:
nodeName- The name of the node that received the input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamp
FlowTraceNodeInputEvent.Builder timestamp(Instant timestamp)
The date and time that the trace was returned.
- Parameters:
timestamp- The date and time that the trace was returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-