/** * 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 Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace Route53 { namespace Model { /** *

A complex type that contains the response information for the disassociate * request.

See Also:

AWS * API Reference

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

A complex type that describes the changes made to the specified private * hosted zone.

*/ inline const ChangeInfo& GetChangeInfo() const{ return m_changeInfo; } /** *

A complex type that describes the changes made to the specified private * hosted zone.

*/ inline void SetChangeInfo(const ChangeInfo& value) { m_changeInfo = value; } /** *

A complex type that describes the changes made to the specified private * hosted zone.

*/ inline void SetChangeInfo(ChangeInfo&& value) { m_changeInfo = std::move(value); } /** *

A complex type that describes the changes made to the specified private * hosted zone.

*/ inline DisassociateVPCFromHostedZoneResult& WithChangeInfo(const ChangeInfo& value) { SetChangeInfo(value); return *this;} /** *

A complex type that describes the changes made to the specified private * hosted zone.

*/ inline DisassociateVPCFromHostedZoneResult& WithChangeInfo(ChangeInfo&& value) { SetChangeInfo(std::move(value)); return *this;} private: ChangeInfo m_changeInfo; }; } // namespace Model } // namespace Route53 } // namespace Aws