Interface ArrayPropertiesDetail.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ArrayPropertiesDetail.Builder,ArrayPropertiesDetail>
,SdkBuilder<ArrayPropertiesDetail.Builder,ArrayPropertiesDetail>
,SdkPojo
- Enclosing class:
- ArrayPropertiesDetail
public static interface ArrayPropertiesDetail.Builder extends SdkPojo, CopyableBuilder<ArrayPropertiesDetail.Builder,ArrayPropertiesDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ArrayPropertiesDetail.Builder
index(Integer index)
The job index within the array that's associated with this job.ArrayPropertiesDetail.Builder
size(Integer size)
The size of the array job.ArrayPropertiesDetail.Builder
statusSummary(Map<String,Integer> statusSummary)
A summary of the number of array job children in each available job status.-
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
-
statusSummary
ArrayPropertiesDetail.Builder statusSummary(Map<String,Integer> statusSummary)
A summary of the number of array job children in each available job status. This parameter is returned for parent array jobs.
- Parameters:
statusSummary
- A summary of the number of array job children in each available job status. This parameter is returned for parent array jobs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
size
ArrayPropertiesDetail.Builder size(Integer size)
The size of the array job. This parameter is returned for parent array jobs.
- Parameters:
size
- The size of the array job. This parameter is returned for parent array jobs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
index
ArrayPropertiesDetail.Builder index(Integer index)
The job index within the array that's associated with this job. This parameter is returned for array job children.
- Parameters:
index
- The job index within the array that's associated with this job. This parameter is returned for array job children.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-