Interface JobNodeDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JobNodeDetails.Builder,JobNodeDetails>,SdkBuilder<JobNodeDetails.Builder,JobNodeDetails>,SdkPojo
- Enclosing class:
- JobNodeDetails
public static interface JobNodeDetails.Builder extends SdkPojo, CopyableBuilder<JobNodeDetails.Builder,JobNodeDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobNodeDetails.BuilderjobRuns(Collection<JobRun> jobRuns)The information for the job runs represented by the job node.JobNodeDetails.BuilderjobRuns(Consumer<JobRun.Builder>... jobRuns)The information for the job runs represented by the job node.JobNodeDetails.BuilderjobRuns(JobRun... jobRuns)The information for the job runs represented by the job node.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
jobRuns
JobNodeDetails.Builder jobRuns(Collection<JobRun> jobRuns)
The information for the job runs represented by the job node.
- Parameters:
jobRuns- The information for the job runs represented by the job node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobRuns
JobNodeDetails.Builder jobRuns(JobRun... jobRuns)
The information for the job runs represented by the job node.
- Parameters:
jobRuns- The information for the job runs represented by the job node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobRuns
JobNodeDetails.Builder jobRuns(Consumer<JobRun.Builder>... jobRuns)
The information for the job runs represented by the job node.
This is a convenience method that creates an instance of theJobRun.Builderavoiding the need to create one manually viaJobRun.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#jobRuns(List.) - Parameters:
jobRuns- a consumer that will call methods onJobRun.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#jobRuns(java.util.Collection)
-
-