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