/**
* 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 to a DeleteHostedZone
* request.See Also:
AWS
* API Reference
A complex type that contains the ID, the status, and the date and time of a * request to delete a hosted zone.
*/ inline const ChangeInfo& GetChangeInfo() const{ return m_changeInfo; } /** *A complex type that contains the ID, the status, and the date and time of a * request to delete a hosted zone.
*/ inline void SetChangeInfo(const ChangeInfo& value) { m_changeInfo = value; } /** *A complex type that contains the ID, the status, and the date and time of a * request to delete a hosted zone.
*/ inline void SetChangeInfo(ChangeInfo&& value) { m_changeInfo = std::move(value); } /** *A complex type that contains the ID, the status, and the date and time of a * request to delete a hosted zone.
*/ inline DeleteHostedZoneResult& WithChangeInfo(const ChangeInfo& value) { SetChangeInfo(value); return *this;} /** *A complex type that contains the ID, the status, and the date and time of a * request to delete a hosted zone.
*/ inline DeleteHostedZoneResult& WithChangeInfo(ChangeInfo&& value) { SetChangeInfo(std::move(value)); return *this;} private: ChangeInfo m_changeInfo; }; } // namespace Model } // namespace Route53 } // namespace Aws