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