Class: Aws::Batch::Types::ServiceEnvironmentOrder

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#orderInteger

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

Returns:

  • (Integer)


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_environmentString

The name or ARN of the service environment.

Returns:

  • (String)


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