Interface CompareDataSetsStepInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CompareDataSetsStepInput.Builder,CompareDataSetsStepInput>,SdkBuilder<CompareDataSetsStepInput.Builder,CompareDataSetsStepInput>,SdkPojo
- Enclosing class:
- CompareDataSetsStepInput
public static interface CompareDataSetsStepInput.Builder extends SdkPojo, CopyableBuilder<CompareDataSetsStepInput.Builder,CompareDataSetsStepInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompareDataSetsStepInput.BuildersourceDataSets(Collection<DataSet> sourceDataSets)The source data sets of the compare data sets step input location.CompareDataSetsStepInput.BuildersourceDataSets(Consumer<DataSet.Builder>... sourceDataSets)The source data sets of the compare data sets step input location.CompareDataSetsStepInput.BuildersourceDataSets(DataSet... sourceDataSets)The source data sets of the compare data sets step input location.CompareDataSetsStepInput.BuildersourceLocation(String sourceLocation)The source location of the compare data sets step input location.CompareDataSetsStepInput.BuildertargetDataSets(Collection<DataSet> targetDataSets)The target data sets of the compare data sets step input location.CompareDataSetsStepInput.BuildertargetDataSets(Consumer<DataSet.Builder>... targetDataSets)The target data sets of the compare data sets step input location.CompareDataSetsStepInput.BuildertargetDataSets(DataSet... targetDataSets)The target data sets of the compare data sets step input location.CompareDataSetsStepInput.BuildertargetLocation(String targetLocation)The target location of the compare data sets step input location.-
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
-
sourceLocation
CompareDataSetsStepInput.Builder sourceLocation(String sourceLocation)
The source location of the compare data sets step input location.
- Parameters:
sourceLocation- The source location of the compare data sets step input location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetLocation
CompareDataSetsStepInput.Builder targetLocation(String targetLocation)
The target location of the compare data sets step input location.
- Parameters:
targetLocation- The target location of the compare data sets step input location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceDataSets
CompareDataSetsStepInput.Builder sourceDataSets(Collection<DataSet> sourceDataSets)
The source data sets of the compare data sets step input location.
- Parameters:
sourceDataSets- The source data sets of the compare data sets step input location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceDataSets
CompareDataSetsStepInput.Builder sourceDataSets(DataSet... sourceDataSets)
The source data sets of the compare data sets step input location.
- Parameters:
sourceDataSets- The source data sets of the compare data sets step input location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceDataSets
CompareDataSetsStepInput.Builder sourceDataSets(Consumer<DataSet.Builder>... sourceDataSets)
The source data sets of the compare data sets step input location.
This is a convenience method that creates an instance of theDataSet.Builderavoiding the need to create one manually viaDataSet.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#sourceDataSets(List.) - Parameters:
sourceDataSets- a consumer that will call methods onDataSet.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#sourceDataSets(java.util.Collection)
-
targetDataSets
CompareDataSetsStepInput.Builder targetDataSets(Collection<DataSet> targetDataSets)
The target data sets of the compare data sets step input location.
- Parameters:
targetDataSets- The target data sets of the compare data sets step input location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetDataSets
CompareDataSetsStepInput.Builder targetDataSets(DataSet... targetDataSets)
The target data sets of the compare data sets step input location.
- Parameters:
targetDataSets- The target data sets of the compare data sets step input location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetDataSets
CompareDataSetsStepInput.Builder targetDataSets(Consumer<DataSet.Builder>... targetDataSets)
The target data sets of the compare data sets step input location.
This is a convenience method that creates an instance of theDataSet.Builderavoiding the need to create one manually viaDataSet.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#targetDataSets(List.) - Parameters:
targetDataSets- a consumer that will call methods onDataSet.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#targetDataSets(java.util.Collection)
-
-