/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The CheckDomainTransferability response includes the following
* elements.See Also:
AWS
* API Reference
A complex type that contains information about whether the specified domain * can be transferred to Route 53.
*/ inline const DomainTransferability& GetTransferability() const{ return m_transferability; } /** *A complex type that contains information about whether the specified domain * can be transferred to Route 53.
*/ inline void SetTransferability(const DomainTransferability& value) { m_transferability = value; } /** *A complex type that contains information about whether the specified domain * can be transferred to Route 53.
*/ inline void SetTransferability(DomainTransferability&& value) { m_transferability = std::move(value); } /** *A complex type that contains information about whether the specified domain * can be transferred to Route 53.
*/ inline CheckDomainTransferabilityResult& WithTransferability(const DomainTransferability& value) { SetTransferability(value); return *this;} /** *A complex type that contains information about whether the specified domain * can be transferred to Route 53.
*/ inline CheckDomainTransferabilityResult& WithTransferability(DomainTransferability&& value) { SetTransferability(std::move(value)); return *this;} private: DomainTransferability m_transferability; }; } // namespace Model } // namespace Route53Domains } // namespace Aws