Struct aws_sdk_sqs::output::ListQueuesOutput
source · #[non_exhaustive]pub struct ListQueuesOutput { /* private fields */ }
Expand description
A list of your queues.
Implementations§
source§impl ListQueuesOutput
impl ListQueuesOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Pagination token to include in the next request. Token value is null
if there are no additional results to request, or if you did not set MaxResults
in the request.
sourcepub fn queue_urls(&self) -> Option<&[String]>
pub fn queue_urls(&self) -> Option<&[String]>
A list of queue URLs, up to 1,000 entries, or the value of MaxResults that you sent in the request.
source§impl ListQueuesOutput
impl ListQueuesOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListQueuesOutput
.
Trait Implementations§
source§impl Clone for ListQueuesOutput
impl Clone for ListQueuesOutput
source§fn clone(&self) -> ListQueuesOutput
fn clone(&self) -> ListQueuesOutput
Returns a copy 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 ListQueuesOutput
impl Debug for ListQueuesOutput
source§impl PartialEq<ListQueuesOutput> for ListQueuesOutput
impl PartialEq<ListQueuesOutput> for ListQueuesOutput
source§fn eq(&self, other: &ListQueuesOutput) -> bool
fn eq(&self, other: &ListQueuesOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.