/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace SQS { namespace Model { /** *

A list of your dead letter source queues.

See Also:

AWS * API Reference

*/ class ListDeadLetterSourceQueuesResult { public: AWS_SQS_API ListDeadLetterSourceQueuesResult(); AWS_SQS_API ListDeadLetterSourceQueuesResult(const Aws::AmazonWebServiceResult& result); AWS_SQS_API ListDeadLetterSourceQueuesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list of source queue URLs that have the RedrivePolicy queue * attribute configured with a dead-letter queue.

*/ inline const Aws::Vector& GetQueueUrls() const{ return m_queueUrls; } /** *

A list of source queue URLs that have the RedrivePolicy queue * attribute configured with a dead-letter queue.

*/ inline void SetQueueUrls(const Aws::Vector& value) { m_queueUrls = value; } /** *

A list of source queue URLs that have the RedrivePolicy queue * attribute configured with a dead-letter queue.

*/ inline void SetQueueUrls(Aws::Vector&& value) { m_queueUrls = std::move(value); } /** *

A list of source queue URLs that have the RedrivePolicy queue * attribute configured with a dead-letter queue.

*/ inline ListDeadLetterSourceQueuesResult& WithQueueUrls(const Aws::Vector& value) { SetQueueUrls(value); return *this;} /** *

A list of source queue URLs that have the RedrivePolicy queue * attribute configured with a dead-letter queue.

*/ inline ListDeadLetterSourceQueuesResult& WithQueueUrls(Aws::Vector&& value) { SetQueueUrls(std::move(value)); return *this;} /** *

A list of source queue URLs that have the RedrivePolicy queue * attribute configured with a dead-letter queue.

*/ inline ListDeadLetterSourceQueuesResult& AddQueueUrls(const Aws::String& value) { m_queueUrls.push_back(value); return *this; } /** *

A list of source queue URLs that have the RedrivePolicy queue * attribute configured with a dead-letter queue.

*/ inline ListDeadLetterSourceQueuesResult& AddQueueUrls(Aws::String&& value) { m_queueUrls.push_back(std::move(value)); return *this; } /** *

A list of source queue URLs that have the RedrivePolicy queue * attribute configured with a dead-letter queue.

*/ inline ListDeadLetterSourceQueuesResult& AddQueueUrls(const char* value) { m_queueUrls.push_back(value); return *this; } /** *

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.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

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.

*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *

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.

*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *

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.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

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.

*/ inline ListDeadLetterSourceQueuesResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

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.

*/ inline ListDeadLetterSourceQueuesResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

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.

*/ inline ListDeadLetterSourceQueuesResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline ListDeadLetterSourceQueuesResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline ListDeadLetterSourceQueuesResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::Vector m_queueUrls; Aws::String m_nextToken; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace SQS } // namespace Aws