Interface DescribeJobResponse.Builder

    • Method Detail

      • jobMetadata

        DescribeJobResponse.Builder jobMetadata​(JobMetadata jobMetadata)

        Information about a specific job, including shipping information, job status, and other important metadata.

        Parameters:
        jobMetadata - Information about a specific job, including shipping information, job status, and other important metadata.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • subJobMetadata

        DescribeJobResponse.Builder subJobMetadata​(Collection<JobMetadata> subJobMetadata)

        Information about a specific job part (in the case of an export job), including shipping information, job status, and other important metadata.

        Parameters:
        subJobMetadata - Information about a specific job part (in the case of an export job), including shipping information, job status, and other important metadata.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • subJobMetadata

        DescribeJobResponse.Builder subJobMetadata​(JobMetadata... subJobMetadata)

        Information about a specific job part (in the case of an export job), including shipping information, job status, and other important metadata.

        Parameters:
        subJobMetadata - Information about a specific job part (in the case of an export job), including shipping information, job status, and other important metadata.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • subJobMetadata

        DescribeJobResponse.Builder subJobMetadata​(Consumer<JobMetadata.Builder>... subJobMetadata)

        Information about a specific job part (in the case of an export job), including shipping information, job status, and other important metadata.

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

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

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