pub struct UpdateJobQueueRequest {
pub compute_environment_order: Option<Vec<ComputeEnvironmentOrder>>,
pub job_queue: String,
pub priority: Option<i64>,
pub state: Option<String>,
}
Fields§
§compute_environment_order: Option<Vec<ComputeEnvironmentOrder>>
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.
job_queue: String
The name or the Amazon Resource Name (ARN) of the job queue.
priority: Option<i64>
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
.
state: Option<String>
Describes the queue's ability to accept new jobs.
Trait Implementations§
Source§impl Clone for UpdateJobQueueRequest
impl Clone for UpdateJobQueueRequest
Source§fn clone(&self) -> UpdateJobQueueRequest
fn clone(&self) -> UpdateJobQueueRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateJobQueueRequest
impl Debug for UpdateJobQueueRequest
Source§impl Default for UpdateJobQueueRequest
impl Default for UpdateJobQueueRequest
Source§fn default() -> UpdateJobQueueRequest
fn default() -> UpdateJobQueueRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateJobQueueRequest
impl PartialEq for UpdateJobQueueRequest
Source§impl Serialize for UpdateJobQueueRequest
impl Serialize for UpdateJobQueueRequest
impl StructuralPartialEq for UpdateJobQueueRequest
Auto Trait Implementations§
impl Freeze for UpdateJobQueueRequest
impl RefUnwindSafe for UpdateJobQueueRequest
impl Send for UpdateJobQueueRequest
impl Sync for UpdateJobQueueRequest
impl Unpin for UpdateJobQueueRequest
impl UnwindSafe for UpdateJobQueueRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more