/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #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 * AssociateVPCWithHostedZone request.

See Also:

AWS * API Reference

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

A complex type that describes the changes made to your hosted zone.

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

A complex type that describes the changes made to your hosted zone.

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

A complex type that describes the changes made to your hosted zone.

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

A complex type that describes the changes made to your hosted zone.

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

A complex type that describes the changes made to your hosted zone.

*/ inline AssociateVPCWithHostedZoneResult& WithChangeInfo(ChangeInfo&& value) { SetChangeInfo(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 AssociateVPCWithHostedZoneResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline AssociateVPCWithHostedZoneResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline AssociateVPCWithHostedZoneResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ChangeInfo m_changeInfo; Aws::String m_requestId; }; } // namespace Model } // namespace Route53 } // namespace Aws