Interface JobExecutionSummaryForThing.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JobExecutionSummaryForThing.Builder,JobExecutionSummaryForThing>,SdkBuilder<JobExecutionSummaryForThing.Builder,JobExecutionSummaryForThing>,SdkPojo
- Enclosing class:
- JobExecutionSummaryForThing
public static interface JobExecutionSummaryForThing.Builder extends SdkPojo, CopyableBuilder<JobExecutionSummaryForThing.Builder,JobExecutionSummaryForThing>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default JobExecutionSummaryForThing.BuilderjobExecutionSummary(Consumer<JobExecutionSummary.Builder> jobExecutionSummary)Contains a subset of information about a job execution.JobExecutionSummaryForThing.BuilderjobExecutionSummary(JobExecutionSummary jobExecutionSummary)Contains a subset of information about a job execution.JobExecutionSummaryForThing.BuilderjobId(String jobId)The unique identifier you assigned to this job when it was created.-
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
-
jobId
JobExecutionSummaryForThing.Builder jobId(String jobId)
The unique identifier you assigned to this job when it was created.
- Parameters:
jobId- The unique identifier you assigned to this job when it was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobExecutionSummary
JobExecutionSummaryForThing.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 JobExecutionSummaryForThing.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.Builderavoiding the need to create one manually viaJobExecutionSummary.builder().When the
Consumercompletes,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)
-
-