Interface ExecutionProperty.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ExecutionProperty.Builder,ExecutionProperty>
,SdkBuilder<ExecutionProperty.Builder,ExecutionProperty>
,SdkPojo
- Enclosing class:
- ExecutionProperty
public static interface ExecutionProperty.Builder extends SdkPojo, CopyableBuilder<ExecutionProperty.Builder,ExecutionProperty>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutionProperty.Builder
maxConcurrentRuns(Integer maxConcurrentRuns)
The maximum number of concurrent runs allowed for 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
-
maxConcurrentRuns
ExecutionProperty.Builder maxConcurrentRuns(Integer maxConcurrentRuns)
The maximum number of concurrent runs allowed for the job. The default is 1. An error is returned when this threshold is reached. The maximum value you can specify is controlled by a service limit.
- Parameters:
maxConcurrentRuns
- The maximum number of concurrent runs allowed for the job. The default is 1. An error is returned when this threshold is reached. The maximum value you can specify is controlled by a service limit.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-