/** * 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 { class ChangeCidrCollectionResult { public: AWS_ROUTE53_API ChangeCidrCollectionResult(); AWS_ROUTE53_API ChangeCidrCollectionResult(const Aws::AmazonWebServiceResult& result); AWS_ROUTE53_API ChangeCidrCollectionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID that is returned by ChangeCidrCollection. You can use it * as input to GetChange to see if a CIDR collection change has * propagated or not.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The ID that is returned by ChangeCidrCollection. You can use it * as input to GetChange to see if a CIDR collection change has * propagated or not.

*/ inline void SetId(const Aws::String& value) { m_id = value; } /** *

The ID that is returned by ChangeCidrCollection. You can use it * as input to GetChange to see if a CIDR collection change has * propagated or not.

*/ inline void SetId(Aws::String&& value) { m_id = std::move(value); } /** *

The ID that is returned by ChangeCidrCollection. You can use it * as input to GetChange to see if a CIDR collection change has * propagated or not.

*/ inline void SetId(const char* value) { m_id.assign(value); } /** *

The ID that is returned by ChangeCidrCollection. You can use it * as input to GetChange to see if a CIDR collection change has * propagated or not.

*/ inline ChangeCidrCollectionResult& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The ID that is returned by ChangeCidrCollection. You can use it * as input to GetChange to see if a CIDR collection change has * propagated or not.

*/ inline ChangeCidrCollectionResult& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The ID that is returned by ChangeCidrCollection. You can use it * as input to GetChange to see if a CIDR collection change has * propagated or not.

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