Interface BatchStepOutput.Builder

    • 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 the DataSet.Builder avoiding the need to create one manually via DataSet.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #dataSetDetails(List).

        Parameters:
        dataSetDetails - a consumer that will call methods on DataSet.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #dataSetDetails(java.util.Collection)