Interface JobExecutionSummaryForJob.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<JobExecutionSummaryForJob.Builder,JobExecutionSummaryForJob>
,SdkBuilder<JobExecutionSummaryForJob.Builder,JobExecutionSummaryForJob>
,SdkPojo
- Enclosing class:
- JobExecutionSummaryForJob
public static interface JobExecutionSummaryForJob.Builder extends SdkPojo, CopyableBuilder<JobExecutionSummaryForJob.Builder,JobExecutionSummaryForJob>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default JobExecutionSummaryForJob.Builder
jobExecutionSummary(Consumer<JobExecutionSummary.Builder> jobExecutionSummary)
Contains a subset of information about a job execution.JobExecutionSummaryForJob.Builder
jobExecutionSummary(JobExecutionSummary jobExecutionSummary)
Contains a subset of information about a job execution.JobExecutionSummaryForJob.Builder
thingArn(String thingArn)
The ARN of the thing on which the job execution is running.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
thingArn
JobExecutionSummaryForJob.Builder thingArn(String thingArn)
The ARN of the thing on which the job execution is running.
- Parameters:
thingArn
- The ARN of the thing on which the job execution is running.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobExecutionSummary
JobExecutionSummaryForJob.Builder jobExecutionSummary(JobExecutionSummary jobExecutionSummary)
Contains a subset of information about a job execution.
- Parameters:
jobExecutionSummary
- Contains a subset of information about a job execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobExecutionSummary
default JobExecutionSummaryForJob.Builder jobExecutionSummary(Consumer<JobExecutionSummary.Builder> jobExecutionSummary)
Contains a subset of information about a job execution.
This is a convenience method that creates an instance of theJobExecutionSummary.Builder
avoiding the need to create one manually viaJobExecutionSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tojobExecutionSummary(JobExecutionSummary)
.- Parameters:
jobExecutionSummary
- a consumer that will call methods onJobExecutionSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
jobExecutionSummary(JobExecutionSummary)
-
-