Interface ListJobExecutionsForThingResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListJobExecutionsForThingResponse.Builder,ListJobExecutionsForThingResponse>
,IotResponse.Builder
,SdkBuilder<ListJobExecutionsForThingResponse.Builder,ListJobExecutionsForThingResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListJobExecutionsForThingResponse
public static interface ListJobExecutionsForThingResponse.Builder extends IotResponse.Builder, SdkPojo, CopyableBuilder<ListJobExecutionsForThingResponse.Builder,ListJobExecutionsForThingResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListJobExecutionsForThingResponse.Builder
executionSummaries(Collection<JobExecutionSummaryForThing> executionSummaries)
A list of job execution summaries.ListJobExecutionsForThingResponse.Builder
executionSummaries(Consumer<JobExecutionSummaryForThing.Builder>... executionSummaries)
A list of job execution summaries.ListJobExecutionsForThingResponse.Builder
executionSummaries(JobExecutionSummaryForThing... executionSummaries)
A list of job execution summaries.ListJobExecutionsForThingResponse.Builder
nextToken(String nextToken)
The token for the next set of results, or null if there are no additional results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iot.model.IotResponse.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
-
executionSummaries
ListJobExecutionsForThingResponse.Builder executionSummaries(Collection<JobExecutionSummaryForThing> executionSummaries)
A list of job execution summaries.
- Parameters:
executionSummaries
- A list of job execution summaries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionSummaries
ListJobExecutionsForThingResponse.Builder executionSummaries(JobExecutionSummaryForThing... executionSummaries)
A list of job execution summaries.
- Parameters:
executionSummaries
- A list of job execution summaries.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionSummaries
ListJobExecutionsForThingResponse.Builder executionSummaries(Consumer<JobExecutionSummaryForThing.Builder>... executionSummaries)
A list of job execution summaries.
This is a convenience method that creates an instance of theJobExecutionSummaryForThing.Builder
avoiding the need to create one manually viaJobExecutionSummaryForThing.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#executionSummaries(List
.) - Parameters:
executionSummaries
- a consumer that will call methods onJobExecutionSummaryForThing.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#executionSummaries(java.util.Collection
)
-
nextToken
ListJobExecutionsForThingResponse.Builder nextToken(String nextToken)
The token for the next set of results, or null if there are no additional results.
- Parameters:
nextToken
- The token for the next set of results, or null if there are no additional results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-