Interface Job.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Job.Builder,
,Job> SdkBuilder<Job.Builder,
,Job> SdkPojo
- Enclosing class:
Job
-
Method Summary
Modifier and TypeMethodDescriptionsteps
(Collection<Step> steps) The execution steps for an execution job, for an Amplify app.steps
(Consumer<Step.Builder>... steps) The execution steps for an execution job, for an Amplify app.The execution steps for an execution job, for an Amplify app.default Job.Builder
summary
(Consumer<JobSummary.Builder> summary) Describes the summary for an execution job for an Amplify app.summary
(JobSummary summary) Describes the summary for an execution job for an Amplify app.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 Details
-
summary
Describes the summary for an execution job for an Amplify app.
- Parameters:
summary
- Describes the summary for an execution job for an Amplify app.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
summary
Describes the summary for an execution job for an Amplify app.
This is a convenience method that creates an instance of theJobSummary.Builder
avoiding the need to create one manually viaJobSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosummary(JobSummary)
.- Parameters:
summary
- 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:
-
steps
The execution steps for an execution job, for an Amplify app.
- Parameters:
steps
- The execution steps for an execution job, for an Amplify app.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steps
The execution steps for an execution job, for an Amplify app.
- Parameters:
steps
- The execution steps for an execution job, for an Amplify app.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steps
The execution steps for an execution job, for an Amplify app.
This is a convenience method that creates an instance of theStep.Builder
avoiding the need to create one manually viaStep.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosteps(List<Step>)
.- Parameters:
steps
- a consumer that will call methods onStep.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-