/**
* 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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CheckDomainTransferabilityResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CheckDomainTransferabilityResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CheckDomainTransferabilityResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DomainTransferability m_transferability; Aws::String m_requestId; }; } // namespace Model } // namespace Route53Domains } // namespace Aws