interface SchedulingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnQueuePropsMixin.SchedulingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnQueuePropsMixin_SchedulingConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnQueuePropsMixin.SchedulingConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnQueuePropsMixin.SchedulingConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » CfnQueuePropsMixin » SchedulingConfigurationProperty |
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;
declare const priorityFifo: any;
const schedulingConfigurationProperty: deadline.CfnQueuePropsMixin.SchedulingConfigurationProperty = {
priorityBalanced: {
renderingTaskBuffer: 123,
},
priorityFifo: priorityFifo,
weightedBalanced: {
errorWeight: 123,
maxPriorityOverride: {
alwaysScheduleFirst: alwaysScheduleFirst,
},
minPriorityOverride: {
alwaysScheduleLast: alwaysScheduleLast,
},
priorityWeight: 123,
renderingTaskBuffer: 123,
renderingTaskWeight: 123,
submissionTimeWeight: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| priority | IResolvable | Priority | |
| priority | any | |
| weighted | IResolvable | Weighted |
priorityBalanced?
Type:
IResolvable | Priority
(optional)
priorityFifo?
Type:
any
(optional)
weightedBalanced?
Type:
IResolvable | Weighted
(optional)

.NET
Go
Java
Python
TypeScript