Interface FlowTraceNodeOutputEvent.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FlowTraceNodeOutputEvent.Builder,FlowTraceNodeOutputEvent>
,SdkBuilder<FlowTraceNodeOutputEvent.Builder,FlowTraceNodeOutputEvent>
,SdkPojo
- Enclosing class:
- FlowTraceNodeOutputEvent
public static interface FlowTraceNodeOutputEvent.Builder extends SdkPojo, CopyableBuilder<FlowTraceNodeOutputEvent.Builder,FlowTraceNodeOutputEvent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowTraceNodeOutputEvent.Builder
fields(Collection<FlowTraceNodeOutputField> fields)
An array of objects containing information about each field in the output.FlowTraceNodeOutputEvent.Builder
fields(Consumer<FlowTraceNodeOutputField.Builder>... fields)
An array of objects containing information about each field in the output.FlowTraceNodeOutputEvent.Builder
fields(FlowTraceNodeOutputField... fields)
An array of objects containing information about each field in the output.FlowTraceNodeOutputEvent.Builder
nodeName(String nodeName)
The name of the node that yielded the output.FlowTraceNodeOutputEvent.Builder
timestamp(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
FlowTraceNodeOutputEvent.Builder fields(Collection<FlowTraceNodeOutputField> fields)
An array of objects containing information about each field in the output.
- Parameters:
fields
- An array of objects containing information about each field in the output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
FlowTraceNodeOutputEvent.Builder fields(FlowTraceNodeOutputField... fields)
An array of objects containing information about each field in the output.
- Parameters:
fields
- An array of objects containing information about each field in the output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fields
FlowTraceNodeOutputEvent.Builder fields(Consumer<FlowTraceNodeOutputField.Builder>... fields)
An array of objects containing information about each field in the output.
This is a convenience method that creates an instance of theFlowTraceNodeOutputField.Builder
avoiding the need to create one manually viaFlowTraceNodeOutputField.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#fields(List
.) - Parameters:
fields
- a consumer that will call methods onFlowTraceNodeOutputField.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#fields(java.util.Collection
)
-
nodeName
FlowTraceNodeOutputEvent.Builder nodeName(String nodeName)
The name of the node that yielded the output.
- Parameters:
nodeName
- The name of the node that yielded the output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamp
FlowTraceNodeOutputEvent.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.
-
-