Interface CfnQueue.SchedulingConfigurationProperty

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

@Stability(Stable) public static interface CfnQueue.SchedulingConfigurationProperty 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;
 Object priorityFifo;
 SchedulingConfigurationProperty schedulingConfigurationProperty = SchedulingConfigurationProperty.builder()
         .priorityBalanced(PriorityBalancedSchedulingConfigurationProperty.builder()
                 .renderingTaskBuffer(123)
                 .build())
         .priorityFifo(priorityFifo)
         .weightedBalanced(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())
         .build();
 

See Also: