/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/elasticbeanstalk/ElasticBeanstalk_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSStreamFwd.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace ElasticBeanstalk { namespace Model { /** * <p>The builder used to build the custom platform.</p><p><h3>See Also:</h3> <a * href="http://docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/Builder">AWS * API Reference</a></p> */ class Builder { public: AWS_ELASTICBEANSTALK_API Builder(); AWS_ELASTICBEANSTALK_API Builder(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_ELASTICBEANSTALK_API Builder& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_ELASTICBEANSTALK_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_ELASTICBEANSTALK_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** * <p>The ARN of the builder.</p> */ inline const Aws::String& GetARN() const{ return m_aRN; } /** * <p>The ARN of the builder.</p> */ inline bool ARNHasBeenSet() const { return m_aRNHasBeenSet; } /** * <p>The ARN of the builder.</p> */ inline void SetARN(const Aws::String& value) { m_aRNHasBeenSet = true; m_aRN = value; } /** * <p>The ARN of the builder.</p> */ inline void SetARN(Aws::String&& value) { m_aRNHasBeenSet = true; m_aRN = std::move(value); } /** * <p>The ARN of the builder.</p> */ inline void SetARN(const char* value) { m_aRNHasBeenSet = true; m_aRN.assign(value); } /** * <p>The ARN of the builder.</p> */ inline Builder& WithARN(const Aws::String& value) { SetARN(value); return *this;} /** * <p>The ARN of the builder.</p> */ inline Builder& WithARN(Aws::String&& value) { SetARN(std::move(value)); return *this;} /** * <p>The ARN of the builder.</p> */ inline Builder& WithARN(const char* value) { SetARN(value); return *this;} private: Aws::String m_aRN; bool m_aRNHasBeenSet = false; }; } // namespace Model } // namespace ElasticBeanstalk } // namespace Aws