/** * 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 to a DeleteHostedZone * request.

See Also:

AWS * API Reference

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

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