Interface FlowTraceNodeOutputEvent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowTraceNodeOutputEvent.Builder,FlowTraceNodeOutputEvent>,SdkBuilder<FlowTraceNodeOutputEvent.Builder,FlowTraceNodeOutputEvent>,SdkPojo
- Enclosing class:
- FlowTraceNodeOutputEvent
@Mutable @NotThreadSafe 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.Builderfields(Collection<FlowTraceNodeOutputField> fields)An array of objects containing information about each field in the output.FlowTraceNodeOutputEvent.Builderfields(Consumer<FlowTraceNodeOutputField.Builder>... fields)An array of objects containing information about each field in the output.FlowTraceNodeOutputEvent.Builderfields(FlowTraceNodeOutputField... fields)An array of objects containing information about each field in the output.FlowTraceNodeOutputEvent.BuildernodeName(String nodeName)The name of the node that yielded the output.FlowTraceNodeOutputEvent.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
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.Builderavoiding the need to create one manually viaFlowTraceNodeOutputField.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 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.
-
-