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

The builder used to build the custom platform.

See Also:

AWS * API Reference

*/ class AWS_ELASTICBEANSTALK_API Builder { public: Builder(); Builder(const Aws::Utils::Xml::XmlNode& xmlNode); Builder& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

The ARN of the builder.

*/ inline const Aws::String& GetARN() const{ return m_aRN; } /** *

The ARN of the builder.

*/ inline bool ARNHasBeenSet() const { return m_aRNHasBeenSet; } /** *

The ARN of the builder.

*/ inline void SetARN(const Aws::String& value) { m_aRNHasBeenSet = true; m_aRN = value; } /** *

The ARN of the builder.

*/ inline void SetARN(Aws::String&& value) { m_aRNHasBeenSet = true; m_aRN = std::move(value); } /** *

The ARN of the builder.

*/ inline void SetARN(const char* value) { m_aRNHasBeenSet = true; m_aRN.assign(value); } /** *

The ARN of the builder.

*/ inline Builder& WithARN(const Aws::String& value) { SetARN(value); return *this;} /** *

The ARN of the builder.

*/ inline Builder& WithARN(Aws::String&& value) { SetARN(std::move(value)); return *this;} /** *

The ARN of the builder.

*/ inline Builder& WithARN(const char* value) { SetARN(value); return *this;} private: Aws::String m_aRN; bool m_aRNHasBeenSet; }; } // namespace Model } // namespace ElasticBeanstalk } // namespace Aws