interface SchedulingPolicyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.SchedulingPolicyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbatch#SchedulingPolicyReference |
Java | software.amazon.awscdk.services.batch.SchedulingPolicyReference |
Python | aws_cdk.aws_batch.SchedulingPolicyReference |
TypeScript | aws-cdk-lib » aws_batch » SchedulingPolicyReference |
A reference to a SchedulingPolicy resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_batch as batch } from 'aws-cdk-lib';
const schedulingPolicyReference: batch.SchedulingPolicyReference = {
schedulingPolicyArn: 'schedulingPolicyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| scheduling | string | The Arn of the SchedulingPolicy resource. |
schedulingPolicyArn
Type:
string
The Arn of the SchedulingPolicy resource.

.NET
Go
Java
Python
TypeScript