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

The CheckDomainTransferability response includes the following * elements.

See Also:

AWS * API Reference

*/ class AWS_ROUTE53DOMAINS_API CheckDomainTransferabilityResult { public: CheckDomainTransferabilityResult(); CheckDomainTransferabilityResult(const Aws::AmazonWebServiceResult& result); CheckDomainTransferabilityResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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