Struct aws_sdk_sqs::output::list_queues_output::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ListQueuesOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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 set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
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, input: impl Into<String>) -> Self
pub fn queue_urls(self, input: impl Into<String>) -> Self
Appends an item to queue_urls
.
To override the contents of this collection use set_queue_urls
.
A list of queue URLs, up to 1,000 entries, or the value of MaxResults that you sent in the request.
sourcepub fn set_queue_urls(self, input: Option<Vec<String>>) -> Self
pub fn set_queue_urls(self, input: Option<Vec<String>>) -> Self
A list of queue URLs, up to 1,000 entries, or the value of MaxResults that you sent in the request.
sourcepub fn build(self) -> ListQueuesOutput
pub fn build(self) -> ListQueuesOutput
Consumes the builder and constructs a ListQueuesOutput
.