Interface JobSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JobSummary.Builder,JobSummary>,SdkBuilder<JobSummary.Builder,JobSummary>,SdkPojo
- Enclosing class:
- JobSummary
public static interface JobSummary.Builder extends SdkPojo, CopyableBuilder<JobSummary.Builder,JobSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobSummary.BuilderendTime(Instant endTime)The time at which the job has finished.JobSummary.BuilderjobId(String jobId)The ID of the job.JobSummary.BuilderstartTime(Instant startTime)The time at which the job was started.JobSummary.Builderstatus(String status)The current status of the job.JobSummary.Builderstatus(JobStatus status)The current status of the job.-
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
-
endTime
JobSummary.Builder endTime(Instant endTime)
The time at which the job has finished.
- Parameters:
endTime- The time at which the job has finished.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobId
JobSummary.Builder jobId(String jobId)
The ID of the job.
- Parameters:
jobId- The ID of the job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTime
JobSummary.Builder startTime(Instant startTime)
The time at which the job was started.
- Parameters:
startTime- The time at which the job was started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
JobSummary.Builder status(String status)
The current status of the job.
-
status
JobSummary.Builder status(JobStatus status)
The current status of the job.
-
-