#[non_exhaustive]pub struct DescribeJobQueuesOutput {
pub job_queues: Option<Vec<JobQueueDetail>>,
pub next_token: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.job_queues: Option<Vec<JobQueueDetail>>
The list of job queues.
next_token: Option<String>
The nextToken
value to include in a future DescribeJobQueues
request. When the results of a DescribeJobQueues
request exceed maxResults
, this value can be used to retrieve the next page of results. This value is null
when there are no more results to return.
Implementations§
source§impl DescribeJobQueuesOutput
impl DescribeJobQueuesOutput
sourcepub fn job_queues(&self) -> &[JobQueueDetail]
pub fn job_queues(&self) -> &[JobQueueDetail]
The list of job queues.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .job_queues.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The nextToken
value to include in a future DescribeJobQueues
request. When the results of a DescribeJobQueues
request exceed maxResults
, this value can be used to retrieve the next page of results. This value is null
when there are no more results to return.
source§impl DescribeJobQueuesOutput
impl DescribeJobQueuesOutput
sourcepub fn builder() -> DescribeJobQueuesOutputBuilder
pub fn builder() -> DescribeJobQueuesOutputBuilder
Creates a new builder-style object to manufacture DescribeJobQueuesOutput
.
Trait Implementations§
source§impl Clone for DescribeJobQueuesOutput
impl Clone for DescribeJobQueuesOutput
source§fn clone(&self) -> DescribeJobQueuesOutput
fn clone(&self) -> DescribeJobQueuesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeJobQueuesOutput
impl Debug for DescribeJobQueuesOutput
source§impl PartialEq for DescribeJobQueuesOutput
impl PartialEq for DescribeJobQueuesOutput
source§fn eq(&self, other: &DescribeJobQueuesOutput) -> bool
fn eq(&self, other: &DescribeJobQueuesOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeJobQueuesOutput
impl RequestId for DescribeJobQueuesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.