Interface SchedulerConfiguration.Builder
- All Superinterfaces:
- Buildable,- CopyableBuilder<SchedulerConfiguration.Builder,,- SchedulerConfiguration> - SdkBuilder<SchedulerConfiguration.Builder,,- SchedulerConfiguration> - SdkPojo
- Enclosing class:
- SchedulerConfiguration
@Mutable
@NotThreadSafe
public static interface SchedulerConfiguration.Builder
extends SdkPojo, CopyableBuilder<SchedulerConfiguration.Builder,SchedulerConfiguration> 
- 
Method SummaryModifier and TypeMethodDescriptionmaxConcurrentRuns(Integer maxConcurrentRuns) The maximum concurrent job runs on this application.queueTimeoutMinutes(Integer queueTimeoutMinutes) The maximum duration in minutes for the job in QUEUED state.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuildercopyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilderapplyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojoequalsBySdkFields, sdkFieldNameToField, sdkFields
- 
Method Details- 
queueTimeoutMinutesThe maximum duration in minutes for the job in QUEUED state. If scheduler configuration is enabled on your application, the default value is 360 minutes (6 hours). The valid range is from 15 to 720. - Parameters:
- queueTimeoutMinutes- The maximum duration in minutes for the job in QUEUED state. If scheduler configuration is enabled on your application, the default value is 360 minutes (6 hours). The valid range is from 15 to 720.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
maxConcurrentRunsThe maximum concurrent job runs on this application. If scheduler configuration is enabled on your application, the default value is 15. The valid range is 1 to 1000. - Parameters:
- maxConcurrentRuns- The maximum concurrent job runs on this application. If scheduler configuration is enabled on your application, the default value is 15. The valid range is 1 to 1000.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
 
-