Interface CompareAction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CompareAction.Builder,CompareAction>,SdkBuilder<CompareAction.Builder,CompareAction>,SdkPojo
- Enclosing class:
- CompareAction
public static interface CompareAction.Builder extends SdkPojo, CopyableBuilder<CompareAction.Builder,CompareAction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CompareAction.Builderinput(Consumer<Input.Builder> input)The input of the compare action.CompareAction.Builderinput(Input input)The input of the compare action.default CompareAction.Builderoutput(Consumer<Output.Builder> output)The output of the compare action.CompareAction.Builderoutput(Output output)The output of the compare action.-
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
-
input
CompareAction.Builder input(Input input)
The input of the compare action.
- Parameters:
input- The input of the compare action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
input
default CompareAction.Builder input(Consumer<Input.Builder> input)
The input of the compare action.
This is a convenience method that creates an instance of theInput.Builderavoiding the need to create one manually viaInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toinput(Input).- Parameters:
input- a consumer that will call methods onInput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
input(Input)
-
output
CompareAction.Builder output(Output output)
The output of the compare action.
- Parameters:
output- The output of the compare action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
output
default CompareAction.Builder output(Consumer<Output.Builder> output)
The output of the compare action.
This is a convenience method that creates an instance of theOutput.Builderavoiding the need to create one manually viaOutput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooutput(Output).- Parameters:
output- a consumer that will call methods onOutput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
output(Output)
-
-