Interface CfnQueuePropsMixin.WeightedBalancedSchedulingConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnQueuePropsMixin.WeightedBalancedSchedulingConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnQueuePropsMixin

@Stability(Stable) public static interface CfnQueuePropsMixin.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.cfnpropertymixins.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: