Class JobQueueArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Batch
Assembly: Pulumi.Aws.dll
Syntax
public sealed class JobQueueArgs : ResourceArgs
Constructors
View SourceJobQueueArgs()
Declaration
public JobQueueArgs()
Properties
View SourceComputeEnvironments
Specifies the set of compute environments mapped to a job queue and their order. The position of the compute environments in the list will dictate the order. You can associate up to 3 compute environments with a job queue.
Declaration
public InputList<string> ComputeEnvironments { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
Name
Specifies the name of the job queue.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Priority
The priority of the job queue. Job queues with a higher priority are evaluated first when associated with the same compute environment.
Declaration
public Input<int> Priority { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
State
The state of the job queue. Must be one of: ENABLED or DISABLED
Declaration
public Input<string> State { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |