Show / Hide Table of Contents

Class CfnJobQueue.ServiceEnvironmentOrderProperty

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

Inheritance
object
CfnJobQueue.ServiceEnvironmentOrderProperty
Implements
CfnJobQueue.IServiceEnvironmentOrderProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnJobQueue.ServiceEnvironmentOrderProperty : CfnJobQueue.IServiceEnvironmentOrderProperty
Syntax (vb)
Public Class CfnJobQueue.ServiceEnvironmentOrderProperty Implements 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

Constructors

ServiceEnvironmentOrderProperty()

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

Properties

Order

The order of the service environment.

ServiceEnvironment

The name or ARN of the service environment.

Constructors

ServiceEnvironmentOrderProperty()

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

public ServiceEnvironmentOrderProperty()
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"
             };

Properties

Order

The order of the service environment.

public double Order { get; set; }
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.

public string ServiceEnvironment { get; set; }
Property Value

string

Remarks

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

Implements

CfnJobQueue.IServiceEnvironmentOrderProperty
Back to top Generated by DocFX