/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The URL of a dead-letter queue.
Queue URLs and names are * case-sensitive.
*/ inline const Aws::String& GetQueueUrl() const{ return m_queueUrl; } /** *The URL of a dead-letter queue.
Queue URLs and names are * case-sensitive.
*/ inline bool QueueUrlHasBeenSet() const { return m_queueUrlHasBeenSet; } /** *The URL of a dead-letter queue.
Queue URLs and names are * case-sensitive.
*/ inline void SetQueueUrl(const Aws::String& value) { m_queueUrlHasBeenSet = true; m_queueUrl = value; } /** *The URL of a dead-letter queue.
Queue URLs and names are * case-sensitive.
*/ inline void SetQueueUrl(Aws::String&& value) { m_queueUrlHasBeenSet = true; m_queueUrl = std::move(value); } /** *The URL of a dead-letter queue.
Queue URLs and names are * case-sensitive.
*/ inline void SetQueueUrl(const char* value) { m_queueUrlHasBeenSet = true; m_queueUrl.assign(value); } /** *The URL of a dead-letter queue.
Queue URLs and names are * case-sensitive.
*/ inline ListDeadLetterSourceQueuesRequest& WithQueueUrl(const Aws::String& value) { SetQueueUrl(value); return *this;} /** *The URL of a dead-letter queue.
Queue URLs and names are * case-sensitive.
*/ inline ListDeadLetterSourceQueuesRequest& WithQueueUrl(Aws::String&& value) { SetQueueUrl(std::move(value)); return *this;} /** *The URL of a dead-letter queue.
Queue URLs and names are * case-sensitive.
*/ inline ListDeadLetterSourceQueuesRequest& WithQueueUrl(const char* value) { SetQueueUrl(value); return *this;} /** *Pagination token to request the next set of results.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *Pagination token to request the next set of results.
*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *Pagination token to request the next set of results.
*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *Pagination token to request the next set of results.
*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *Pagination token to request the next set of results.
*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *Pagination token to request the next set of results.
*/ inline ListDeadLetterSourceQueuesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *Pagination token to request the next set of results.
*/ inline ListDeadLetterSourceQueuesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *Pagination token to request the next set of results.
*/ inline ListDeadLetterSourceQueuesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *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.
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.
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.
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.