/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The builder used to build the custom platform.See Also:
AWS
* API Reference
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