Class: Aws::Batch::Types::ServiceEnvironmentOrder
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::ServiceEnvironmentOrder
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
Specifies the order of a service environment for a job queue. This determines the priority order when multiple service environments are associated with the same job queue.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#order ⇒ Integer
The order of the service environment.
-
#service_environment ⇒ String
The name or ARN of the service environment.
Instance Attribute Details
#order ⇒ Integer
The order of the service environment. Job queues with a higher priority are evaluated first when associated with the same service environment.
8233 8234 8235 8236 8237 8238 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 8233 class ServiceEnvironmentOrder < Struct.new( :order, :service_environment) SENSITIVE = [] include Aws::Structure end |
#service_environment ⇒ String
The name or ARN of the service environment.
8233 8234 8235 8236 8237 8238 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 8233 class ServiceEnvironmentOrder < Struct.new( :order, :service_environment) SENSITIVE = [] include Aws::Structure end |