interface WeightedBalancedSchedulingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnQueuePropsMixin.WeightedBalancedSchedulingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnQueuePropsMixin_WeightedBalancedSchedulingConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnQueuePropsMixin.WeightedBalancedSchedulingConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnQueuePropsMixin.WeightedBalancedSchedulingConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » CfnQueuePropsMixin » WeightedBalancedSchedulingConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_deadline as deadline } from '@aws-cdk/cfn-property-mixins';
declare const alwaysScheduleFirst: any;
declare const alwaysScheduleLast: any;
const weightedBalancedSchedulingConfigurationProperty: deadline.CfnQueuePropsMixin.WeightedBalancedSchedulingConfigurationProperty = {
errorWeight: 123,
maxPriorityOverride: {
alwaysScheduleFirst: alwaysScheduleFirst,
},
minPriorityOverride: {
alwaysScheduleLast: alwaysScheduleLast,
},
priorityWeight: 123,
renderingTaskBuffer: 123,
renderingTaskWeight: 123,
submissionTimeWeight: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| error | number | |
| max | IResolvable | Scheduling | |
| min | IResolvable | Scheduling | |
| priority | number | |
| rendering | number | |
| rendering | number | |
| submission | number |
errorWeight?
Type:
number
(optional, default: -10)
maxPriorityOverride?
Type:
IResolvable | Scheduling
(optional)
minPriorityOverride?
Type:
IResolvable | Scheduling
(optional)
priorityWeight?
Type:
number
(optional, default: 100)
renderingTaskBuffer?
Type:
number
(optional, default: 1)
renderingTaskWeight?
Type:
number
(optional, default: -100)
submissionTimeWeight?
Type:
number
(optional, default: 3)

.NET
Go
Java
Python
TypeScript