UpdateJobQueueRequest

public struct UpdateJobQueueRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

    Declaration

    Swift

    public let computeEnvironmentOrder: [ComputeEnvironmentOrder]?
  • The name or the Amazon Resource Name (ARN) of the job queue.

    Declaration

    Swift

    public let jobQueue: String
  • The priority of the job queue. Job queues with a higher priority (or a higher integer value for the priority parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order, for example, a job queue with a priority value of 10 is given scheduling preference over a job queue with a priority value of 1.

    Declaration

    Swift

    public let priority: Int?
  • Describes the queue’s ability to accept new jobs.

    Declaration

    Swift

    public let state: JQState?
  • Undocumented

    Declaration

    Swift

    public init(computeEnvironmentOrder: [ComputeEnvironmentOrder]? = nil, jobQueue: String, priority: Int? = nil, state: JQState? = nil)