/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include For more information, see Interpreting
* Responses in the Amazon SQS Developer Guide.See Also:
* AWS
* API Reference
The URL of the queue.
*/ inline const Aws::String& GetQueueUrl() const{ return m_queueUrl; } /** *The URL of the queue.
*/ inline void SetQueueUrl(const Aws::String& value) { m_queueUrl = value; } /** *The URL of the queue.
*/ inline void SetQueueUrl(Aws::String&& value) { m_queueUrl = std::move(value); } /** *The URL of the queue.
*/ inline void SetQueueUrl(const char* value) { m_queueUrl.assign(value); } /** *The URL of the queue.
*/ inline GetQueueUrlResult& WithQueueUrl(const Aws::String& value) { SetQueueUrl(value); return *this;} /** *The URL of the queue.
*/ inline GetQueueUrlResult& WithQueueUrl(Aws::String&& value) { SetQueueUrl(std::move(value)); return *this;} /** *The URL of the queue.
*/ inline GetQueueUrlResult& WithQueueUrl(const char* value) { SetQueueUrl(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 GetQueueUrlResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline GetQueueUrlResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_queueUrl; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace SQS } // namespace Aws