Interface FlowTraceNodeOutputField.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FlowTraceNodeOutputField.Builder,FlowTraceNodeOutputField>
,SdkBuilder<FlowTraceNodeOutputField.Builder,FlowTraceNodeOutputField>
,SdkPojo
- Enclosing class:
- FlowTraceNodeOutputField
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.Builder
content(Consumer<FlowTraceNodeOutputContent.Builder> content)
The content of the node output.FlowTraceNodeOutputField.Builder
content(FlowTraceNodeOutputContent content)
The content of the node output.FlowTraceNodeOutputField.Builder
nodeOutputName(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.Builder
avoiding the need to create one manually viaFlowTraceNodeOutputContent.builder()
.When the
Consumer
completes,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.
-
-