Interface CfnQueue.WeightedBalancedSchedulingConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnQueue.WeightedBalancedSchedulingConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnQueue
@Stability(Stable)
public static interface CfnQueue.WeightedBalancedSchedulingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.deadline.*;
Object alwaysScheduleFirst;
Object alwaysScheduleLast;
WeightedBalancedSchedulingConfigurationProperty weightedBalancedSchedulingConfigurationProperty = WeightedBalancedSchedulingConfigurationProperty.builder()
.errorWeight(123)
.maxPriorityOverride(SchedulingMaxPriorityOverrideProperty.builder()
.alwaysScheduleFirst(alwaysScheduleFirst)
.build())
.minPriorityOverride(SchedulingMinPriorityOverrideProperty.builder()
.alwaysScheduleLast(alwaysScheduleLast)
.build())
.priorityWeight(123)
.renderingTaskBuffer(123)
.renderingTaskWeight(123)
.submissionTimeWeight(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnQueue.WeightedBalancedSchedulingConfigurationPropertystatic final classAn implementation forCfnQueue.WeightedBalancedSchedulingConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberDefault: - -10default ObjectReturns union: eitherIResolvableorCfnQueue.SchedulingMaxPriorityOverridePropertydefault ObjectReturns union: eitherIResolvableorCfnQueue.SchedulingMinPriorityOverridePropertydefault NumberDefault: - 100default NumberDefault: - 1default NumberDefault: - -100default NumberDefault: - 3Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getErrorWeight
Default: - -10- See Also:
-
getMaxPriorityOverride
Returns union: eitherIResolvableorCfnQueue.SchedulingMaxPriorityOverrideProperty- See Also:
-
getMinPriorityOverride
Returns union: eitherIResolvableorCfnQueue.SchedulingMinPriorityOverrideProperty- See Also:
-
getPriorityWeight
Default: - 100- See Also:
-
getRenderingTaskBuffer
Default: - 1- See Also:
-
getRenderingTaskWeight
Default: - -100- See Also:
-
getSubmissionTimeWeight
Default: - 3- See Also:
-
builder
@Stability(Stable) static CfnQueue.WeightedBalancedSchedulingConfigurationProperty.Builder builder()
-