/** * 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 Json { class JsonValue; } // namespace Json } // namespace Utils namespace WAFRegional { namespace Model { class AWS_WAFREGIONAL_API GetChangeTokenResult { public: GetChangeTokenResult(); GetChangeTokenResult(const Aws::AmazonWebServiceResult& result); GetChangeTokenResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ChangeToken that you used in the request. Use this value in * a GetChangeTokenStatus request to get the current status of the * request.

*/ inline const Aws::String& GetChangeToken() const{ return m_changeToken; } /** *

The ChangeToken that you used in the request. Use this value in * a GetChangeTokenStatus request to get the current status of the * request.

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

The ChangeToken that you used in the request. Use this value in * a GetChangeTokenStatus request to get the current status of the * request.

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

The ChangeToken that you used in the request. Use this value in * a GetChangeTokenStatus request to get the current status of the * request.

*/ inline void SetChangeToken(const char* value) { m_changeToken.assign(value); } /** *

The ChangeToken that you used in the request. Use this value in * a GetChangeTokenStatus request to get the current status of the * request.

*/ inline GetChangeTokenResult& WithChangeToken(const Aws::String& value) { SetChangeToken(value); return *this;} /** *

The ChangeToken that you used in the request. Use this value in * a GetChangeTokenStatus request to get the current status of the * request.

*/ inline GetChangeTokenResult& WithChangeToken(Aws::String&& value) { SetChangeToken(std::move(value)); return *this;} /** *

The ChangeToken that you used in the request. Use this value in * a GetChangeTokenStatus request to get the current status of the * request.

*/ inline GetChangeTokenResult& WithChangeToken(const char* value) { SetChangeToken(value); return *this;} private: Aws::String m_changeToken; }; } // namespace Model } // namespace WAFRegional } // namespace Aws