Interface FlowTraceNodeOutputField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowTraceNodeOutputField.Builder,FlowTraceNodeOutputField>,SdkBuilder<FlowTraceNodeOutputField.Builder,FlowTraceNodeOutputField>,SdkPojo
- Enclosing class:
- FlowTraceNodeOutputField
@Mutable @NotThreadSafe public static interface FlowTraceNodeOutputField.Builder extends SdkPojo, CopyableBuilder<FlowTraceNodeOutputField.Builder,FlowTraceNodeOutputField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default FlowTraceNodeOutputField.Buildercontent(Consumer<FlowTraceNodeOutputContent.Builder> content)The content of the node output.FlowTraceNodeOutputField.Buildercontent(FlowTraceNodeOutputContent content)The content of the node output.FlowTraceNodeOutputField.BuildernodeOutputName(String nodeOutputName)The name of the node output.-
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
-
content
FlowTraceNodeOutputField.Builder content(FlowTraceNodeOutputContent content)
The content of the node output.
- Parameters:
content- The content of the node output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
default FlowTraceNodeOutputField.Builder content(Consumer<FlowTraceNodeOutputContent.Builder> content)
The content of the node output.
This is a convenience method that creates an instance of theFlowTraceNodeOutputContent.Builderavoiding the need to create one manually viaFlowTraceNodeOutputContent.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocontent(FlowTraceNodeOutputContent).- Parameters:
content- a consumer that will call methods onFlowTraceNodeOutputContent.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
content(FlowTraceNodeOutputContent)
-
nodeOutputName
FlowTraceNodeOutputField.Builder nodeOutputName(String nodeOutputName)
The name of the node output.
- Parameters:
nodeOutputName- The name of the node output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-