Interface ListMatchingJobsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListMatchingJobsResponse.Builder,ListMatchingJobsResponse>,EntityResolutionResponse.Builder,SdkBuilder<ListMatchingJobsResponse.Builder,ListMatchingJobsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListMatchingJobsResponse
public static interface ListMatchingJobsResponse.Builder extends EntityResolutionResponse.Builder, SdkPojo, CopyableBuilder<ListMatchingJobsResponse.Builder,ListMatchingJobsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListMatchingJobsResponse.Builderjobs(Collection<JobSummary> jobs)A list ofJobSummaryobjects, each of which contain the ID, status, start time, and end time of a job.ListMatchingJobsResponse.Builderjobs(Consumer<JobSummary.Builder>... jobs)A list ofJobSummaryobjects, each of which contain the ID, status, start time, and end time of a job.ListMatchingJobsResponse.Builderjobs(JobSummary... jobs)A list ofJobSummaryobjects, each of which contain the ID, status, start time, and end time of a job.ListMatchingJobsResponse.BuildernextToken(String nextToken)The pagination token from the previous API call.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.entityresolution.model.EntityResolutionResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
jobs
ListMatchingJobsResponse.Builder jobs(Collection<JobSummary> jobs)
A list of
JobSummaryobjects, each of which contain the ID, status, start time, and end time of a job.- Parameters:
jobs- A list ofJobSummaryobjects, each of which contain the ID, status, start time, and end time of a job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobs
ListMatchingJobsResponse.Builder jobs(JobSummary... jobs)
A list of
JobSummaryobjects, each of which contain the ID, status, start time, and end time of a job.- Parameters:
jobs- A list ofJobSummaryobjects, each of which contain the ID, status, start time, and end time of a job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobs
ListMatchingJobsResponse.Builder jobs(Consumer<JobSummary.Builder>... jobs)
A list of
This is a convenience method that creates an instance of theJobSummaryobjects, each of which contain the ID, status, start time, and end time of a job.JobSummary.Builderavoiding the need to create one manually viaJobSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#jobs(List.) - Parameters:
jobs- a consumer that will call methods onJobSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#jobs(java.util.Collection)
-
nextToken
ListMatchingJobsResponse.Builder nextToken(String nextToken)
The pagination token from the previous API call.
- Parameters:
nextToken- The pagination token from the previous API call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-