Interface ListBatchJobRestartPointsResponse.Builder

    • Method Detail

      • batchJobSteps

        ListBatchJobRestartPointsResponse.Builder batchJobSteps​(Collection<JobStep> batchJobSteps)

        Returns all the batch job steps and related information for a batch job that previously ran.

        Parameters:
        batchJobSteps - Returns all the batch job steps and related information for a batch job that previously ran.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • batchJobSteps

        ListBatchJobRestartPointsResponse.Builder batchJobSteps​(JobStep... batchJobSteps)

        Returns all the batch job steps and related information for a batch job that previously ran.

        Parameters:
        batchJobSteps - Returns all the batch job steps and related information for a batch job that previously ran.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • batchJobSteps

        ListBatchJobRestartPointsResponse.Builder batchJobSteps​(Consumer<JobStep.Builder>... batchJobSteps)

        Returns all the batch job steps and related information for a batch job that previously ran.

        This is a convenience method that creates an instance of the JobStep.Builder avoiding the need to create one manually via JobStep.builder().

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

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