Show / Hide Table of Contents

Interface CfnJobQueue.IServiceEnvironmentOrderProperty

Specifies the order of a service environment for a job queue.

Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnJobQueue.IServiceEnvironmentOrderProperty
Syntax (vb)
Public Interface CfnJobQueue.IServiceEnvironmentOrderProperty
Remarks

This determines the priority order when multiple service environments are associated with the same job queue.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobqueue-serviceenvironmentorder.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Batch;

             var serviceEnvironmentOrderProperty = new ServiceEnvironmentOrderProperty {
                 Order = 123,
                 ServiceEnvironment = "serviceEnvironment"
             };

Synopsis

Properties

Order

The order of the service environment.

ServiceEnvironment

The name or ARN of the service environment.

Properties

Order

The order of the service environment.

double Order { get; }
Property Value

double

Remarks

Job queues with a higher priority are evaluated first when associated with the same service environment.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobqueue-serviceenvironmentorder.html#cfn-batch-jobqueue-serviceenvironmentorder-order

ServiceEnvironment

The name or ARN of the service environment.

string ServiceEnvironment { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobqueue-serviceenvironmentorder.html#cfn-batch-jobqueue-serviceenvironmentorder-serviceenvironment

Back to top Generated by DocFX