Interface JobBookmarkEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JobBookmarkEntry.Builder,JobBookmarkEntry>,SdkBuilder<JobBookmarkEntry.Builder,JobBookmarkEntry>,SdkPojo
- Enclosing class:
- JobBookmarkEntry
public static interface JobBookmarkEntry.Builder extends SdkPojo, CopyableBuilder<JobBookmarkEntry.Builder,JobBookmarkEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobBookmarkEntry.Builderattempt(Integer attempt)The attempt ID number.JobBookmarkEntry.BuilderjobBookmark(String jobBookmark)The bookmark itself.JobBookmarkEntry.BuilderjobName(String jobName)The name of the job in question.JobBookmarkEntry.BuilderpreviousRunId(String previousRunId)The unique run identifier associated with the previous job run.JobBookmarkEntry.Builderrun(Integer run)The run ID number.JobBookmarkEntry.BuilderrunId(String runId)The run ID number.JobBookmarkEntry.Builderversion(Integer version)The version 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, sdkFields
-
-
-
-
Method Detail
-
jobName
JobBookmarkEntry.Builder jobName(String jobName)
The name of the job in question.
- Parameters:
jobName- The name of the job in question.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
JobBookmarkEntry.Builder version(Integer version)
The version of the job.
- Parameters:
version- The version of the job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
run
JobBookmarkEntry.Builder run(Integer run)
The run ID number.
- Parameters:
run- The run ID number.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attempt
JobBookmarkEntry.Builder attempt(Integer attempt)
The attempt ID number.
- Parameters:
attempt- The attempt ID number.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
previousRunId
JobBookmarkEntry.Builder previousRunId(String previousRunId)
The unique run identifier associated with the previous job run.
- Parameters:
previousRunId- The unique run identifier associated with the previous job run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runId
JobBookmarkEntry.Builder runId(String runId)
The run ID number.
- Parameters:
runId- The run ID number.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobBookmark
JobBookmarkEntry.Builder jobBookmark(String jobBookmark)
The bookmark itself.
- Parameters:
jobBookmark- The bookmark itself.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-