/** * 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 ElasticBeanstalk { namespace Model { /** *

Results message indicating whether a CNAME is available.

See * Also:

AWS * API Reference

*/ class CheckDNSAvailabilityRequest : public ElasticBeanstalkRequest { public: AWS_ELASTICBEANSTALK_API CheckDNSAvailabilityRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CheckDNSAvailability"; } AWS_ELASTICBEANSTALK_API Aws::String SerializePayload() const override; protected: AWS_ELASTICBEANSTALK_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

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