/** * 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 containing the response for the request.

See * Also:

AWS * API Reference

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

A complex type that contains information about changes made to your hosted * zone.

This element contains an ID that you use when performing a GetChange * action to get detailed information about the change.

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

A complex type that contains information about changes made to your hosted * zone.

This element contains an ID that you use when performing a GetChange * action to get detailed information about the change.

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

A complex type that contains information about changes made to your hosted * zone.

This element contains an ID that you use when performing a GetChange * action to get detailed information about the change.

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

A complex type that contains information about changes made to your hosted * zone.

This element contains an ID that you use when performing a GetChange * action to get detailed information about the change.

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

A complex type that contains information about changes made to your hosted * zone.

This element contains an ID that you use when performing a GetChange * action to get detailed information about the change.

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