/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A complex type that contains the response information for the disassociate
* request.See Also:
AWS
* API Reference
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