/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes a queue.See Also:
AWS
* API Reference
The name of the queue.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the queue.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the queue.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the queue.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the queue.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the queue.
*/ inline Queue& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the queue.
*/ inline Queue& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the queue.
*/ inline Queue& WithName(const char* value) { SetName(value); return *this;} /** *The URL of the queue.
*/ inline const Aws::String& GetURL() const{ return m_uRL; } /** *The URL of the queue.
*/ inline bool URLHasBeenSet() const { return m_uRLHasBeenSet; } /** *The URL of the queue.
*/ inline void SetURL(const Aws::String& value) { m_uRLHasBeenSet = true; m_uRL = value; } /** *The URL of the queue.
*/ inline void SetURL(Aws::String&& value) { m_uRLHasBeenSet = true; m_uRL = std::move(value); } /** *The URL of the queue.
*/ inline void SetURL(const char* value) { m_uRLHasBeenSet = true; m_uRL.assign(value); } /** *The URL of the queue.
*/ inline Queue& WithURL(const Aws::String& value) { SetURL(value); return *this;} /** *The URL of the queue.
*/ inline Queue& WithURL(Aws::String&& value) { SetURL(std::move(value)); return *this;} /** *The URL of the queue.
*/ inline Queue& WithURL(const char* value) { SetURL(value); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_uRL; bool m_uRLHasBeenSet = false; }; } // namespace Model } // namespace ElasticBeanstalk } // namespace Aws