@aws-cdk_aws-batch-alpha.OrderedComputeEnvironment

interface OrderedComputeEnvironment ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Batch.Alpha.OrderedComputeEnvironment
Gogithub.com/aws/aws-cdk-go/awscdkbatchalpha/v2#OrderedComputeEnvironment
Javasoftware.amazon.awscdk.services.batch.alpha.OrderedComputeEnvironment
Pythonaws_cdk.aws_batch_alpha.OrderedComputeEnvironment
TypeScript (source)@aws-cdk/aws-batch-alpha ยป OrderedComputeEnvironment

Assigns an order to a ComputeEnvironment.

The JobQueue will prioritize the lowest-order ComputeEnvironment.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as batch_alpha from '@aws-cdk/aws-batch-alpha';

declare const computeEnvironment: batch_alpha.IComputeEnvironment;
const orderedComputeEnvironment: batch_alpha.OrderedComputeEnvironment = {
  computeEnvironment: computeEnvironment,
  order: 123,
};

Properties

NameTypeDescription
computeEnvironment๐Ÿ”นIComputeEnvironmentThe ComputeEnvironment to link to this JobQueue.
order๐Ÿ”นnumberThe order associated with computeEnvironment.

computeEnvironment๐Ÿ”น

Type: IComputeEnvironment

The ComputeEnvironment to link to this JobQueue.


order๐Ÿ”น

Type: number

The order associated with computeEnvironment.