Struct aws_sdk_sqs::input::ListQueuesInput
source · #[non_exhaustive]pub struct ListQueuesInput { /* private fields */ }
Expand description
Implementations§
source§impl ListQueuesInput
impl ListQueuesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListQueues, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListQueues, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListQueues
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListQueuesInput
.
source§impl ListQueuesInput
impl ListQueuesInput
sourcepub fn queue_name_prefix(&self) -> Option<&str>
pub fn queue_name_prefix(&self) -> Option<&str>
A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned.
Queue URLs and names are case-sensitive.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Pagination token to request the next set of results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Maximum number of results to include in the response. Value range is 1 to 1000. You must set MaxResults
to receive a value for NextToken
in the response.
Trait Implementations§
source§impl Clone for ListQueuesInput
impl Clone for ListQueuesInput
source§fn clone(&self) -> ListQueuesInput
fn clone(&self) -> ListQueuesInput
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 ListQueuesInput
impl Debug for ListQueuesInput
source§impl PartialEq<ListQueuesInput> for ListQueuesInput
impl PartialEq<ListQueuesInput> for ListQueuesInput
source§fn eq(&self, other: &ListQueuesInput) -> bool
fn eq(&self, other: &ListQueuesInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.