Interface BatchStepOutput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchStepOutput.Builder,BatchStepOutput>,SdkBuilder<BatchStepOutput.Builder,BatchStepOutput>,SdkPojo
- Enclosing class:
- BatchStepOutput
public static interface BatchStepOutput.Builder extends SdkPojo, CopyableBuilder<BatchStepOutput.Builder,BatchStepOutput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchStepOutput.BuilderdataSetDetails(Collection<DataSet> dataSetDetails)The data set details of the batch step output.BatchStepOutput.BuilderdataSetDetails(Consumer<DataSet.Builder>... dataSetDetails)The data set details of the batch step output.BatchStepOutput.BuilderdataSetDetails(DataSet... dataSetDetails)The data set details of the batch step output.BatchStepOutput.BuilderdataSetExportLocation(String dataSetExportLocation)The data set export location of the batch step output.BatchStepOutput.BuilderdmsOutputLocation(String dmsOutputLocation)The Database Migration Service (DMS) output location of the batch step 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
-
dataSetExportLocation
BatchStepOutput.Builder dataSetExportLocation(String dataSetExportLocation)
The data set export location of the batch step output.
- Parameters:
dataSetExportLocation- The data set export location of the batch step output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dmsOutputLocation
BatchStepOutput.Builder dmsOutputLocation(String dmsOutputLocation)
The Database Migration Service (DMS) output location of the batch step output.
- Parameters:
dmsOutputLocation- The Database Migration Service (DMS) output location of the batch step output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSetDetails
BatchStepOutput.Builder dataSetDetails(Collection<DataSet> dataSetDetails)
The data set details of the batch step output.
- Parameters:
dataSetDetails- The data set details of the batch step output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSetDetails
BatchStepOutput.Builder dataSetDetails(DataSet... dataSetDetails)
The data set details of the batch step output.
- Parameters:
dataSetDetails- The data set details of the batch step output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSetDetails
BatchStepOutput.Builder dataSetDetails(Consumer<DataSet.Builder>... dataSetDetails)
The data set details of the batch step output.
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#dataSetDetails(List.) - Parameters:
dataSetDetails- 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:
#dataSetDetails(java.util.Collection)
-
-