/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Results message indicating whether a CNAME is available.See
* Also:
AWS
* API Reference
The prefix used when this CNAME is reserved.
*/ inline const Aws::String& GetCNAMEPrefix() const{ return m_cNAMEPrefix; } /** *The prefix used when this CNAME is reserved.
*/ inline bool CNAMEPrefixHasBeenSet() const { return m_cNAMEPrefixHasBeenSet; } /** *The prefix used when this CNAME is reserved.
*/ inline void SetCNAMEPrefix(const Aws::String& value) { m_cNAMEPrefixHasBeenSet = true; m_cNAMEPrefix = value; } /** *The prefix used when this CNAME is reserved.
*/ inline void SetCNAMEPrefix(Aws::String&& value) { m_cNAMEPrefixHasBeenSet = true; m_cNAMEPrefix = std::move(value); } /** *The prefix used when this CNAME is reserved.
*/ inline void SetCNAMEPrefix(const char* value) { m_cNAMEPrefixHasBeenSet = true; m_cNAMEPrefix.assign(value); } /** *The prefix used when this CNAME is reserved.
*/ inline CheckDNSAvailabilityRequest& WithCNAMEPrefix(const Aws::String& value) { SetCNAMEPrefix(value); return *this;} /** *The prefix used when this CNAME is reserved.
*/ inline CheckDNSAvailabilityRequest& WithCNAMEPrefix(Aws::String&& value) { SetCNAMEPrefix(std::move(value)); return *this;} /** *The prefix used when this CNAME is reserved.
*/ inline CheckDNSAvailabilityRequest& WithCNAMEPrefix(const char* value) { SetCNAMEPrefix(value); return *this;} private: Aws::String m_cNAMEPrefix; bool m_cNAMEPrefixHasBeenSet = false; }; } // namespace Model } // namespace ElasticBeanstalk } // namespace Aws