Interface JobDependency.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JobDependency.Builder,JobDependency>,SdkBuilder<JobDependency.Builder,JobDependency>,SdkPojo
- Enclosing class:
- JobDependency
public static interface JobDependency.Builder extends SdkPojo, CopyableBuilder<JobDependency.Builder,JobDependency>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobDependency.BuilderjobId(String jobId)The job ID of the Batch job that's associated with this dependency.JobDependency.Buildertype(String type)The type of the job dependency.JobDependency.Buildertype(ArrayJobDependency type)The type of the job dependency.-
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
JobDependency.Builder jobId(String jobId)
The job ID of the Batch job that's associated with this dependency.
- Parameters:
jobId- The job ID of the Batch job that's associated with this dependency.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
JobDependency.Builder type(String type)
The type of the job dependency.
- Parameters:
type- The type of the job dependency.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ArrayJobDependency,ArrayJobDependency
-
type
JobDependency.Builder type(ArrayJobDependency type)
The type of the job dependency.
- Parameters:
type- The type of the job dependency.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ArrayJobDependency,ArrayJobDependency
-
-