interface SchedulingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Deadline.CfnQueue.SchedulingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnQueue_SchedulingConfigurationProperty |
Java | software.amazon.awscdk.services.deadline.CfnQueue.SchedulingConfigurationProperty |
Python | aws_cdk.aws_deadline.CfnQueue.SchedulingConfigurationProperty |
TypeScript | aws-cdk-lib » aws_deadline » CfnQueue » 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-lib';
declare const alwaysScheduleFirst: any;
declare const alwaysScheduleLast: any;
declare const priorityFifo: any;
const schedulingConfigurationProperty: deadline.CfnQueue.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