interface JobQueueComputeEnvironment
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Batch.JobQueueComputeEnvironment |
Java | software.amazon.awscdk.services.batch.JobQueueComputeEnvironment |
Python | aws_cdk.aws_batch.JobQueueComputeEnvironment |
TypeScript (source) | @aws-cdk/aws-batch » JobQueueComputeEnvironment |
Properties for mapping a compute environment to a job queue.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as batch from '@aws-cdk/aws-batch';
declare const computeEnvironment: batch.ComputeEnvironment;
const jobQueueComputeEnvironment: batch.JobQueueComputeEnvironment = {
computeEnvironment: computeEnvironment,
order: 123,
};
Properties
Name | Type | Description |
---|---|---|
compute | ICompute | The batch compute environment to use for processing submitted jobs to this queue. |
order | number | The order in which this compute environment will be selected for dynamic allocation of resources to process submitted jobs. |
computeEnvironment
Type:
ICompute
The batch compute environment to use for processing submitted jobs to this queue.
order
Type:
number
The order in which this compute environment will be selected for dynamic allocation of resources to process submitted jobs.