105 lines
3.8 KiB
C
105 lines
3.8 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/waf-regional/WAFRegional_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace WAFRegional
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
/**
|
|||
|
|
* <p>The response to a request to delete a <a>SqlInjectionMatchSet</a> from AWS
|
|||
|
|
* WAF.</p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/waf-regional-2016-11-28/DeleteSqlInjectionMatchSetResponse">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_WAFREGIONAL_API DeleteSqlInjectionMatchSetResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
DeleteSqlInjectionMatchSetResult();
|
|||
|
|
DeleteSqlInjectionMatchSetResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
DeleteSqlInjectionMatchSetResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>ChangeToken</code> that you used to submit the
|
|||
|
|
* <code>DeleteSqlInjectionMatchSet</code> request. You can also use this value to
|
|||
|
|
* query the status of the request. For more information, see
|
|||
|
|
* <a>GetChangeTokenStatus</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetChangeToken() const{ return m_changeToken; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>ChangeToken</code> that you used to submit the
|
|||
|
|
* <code>DeleteSqlInjectionMatchSet</code> request. You can also use this value to
|
|||
|
|
* query the status of the request. For more information, see
|
|||
|
|
* <a>GetChangeTokenStatus</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetChangeToken(const Aws::String& value) { m_changeToken = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>ChangeToken</code> that you used to submit the
|
|||
|
|
* <code>DeleteSqlInjectionMatchSet</code> request. You can also use this value to
|
|||
|
|
* query the status of the request. For more information, see
|
|||
|
|
* <a>GetChangeTokenStatus</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetChangeToken(Aws::String&& value) { m_changeToken = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>ChangeToken</code> that you used to submit the
|
|||
|
|
* <code>DeleteSqlInjectionMatchSet</code> request. You can also use this value to
|
|||
|
|
* query the status of the request. For more information, see
|
|||
|
|
* <a>GetChangeTokenStatus</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetChangeToken(const char* value) { m_changeToken.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>ChangeToken</code> that you used to submit the
|
|||
|
|
* <code>DeleteSqlInjectionMatchSet</code> request. You can also use this value to
|
|||
|
|
* query the status of the request. For more information, see
|
|||
|
|
* <a>GetChangeTokenStatus</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteSqlInjectionMatchSetResult& WithChangeToken(const Aws::String& value) { SetChangeToken(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>ChangeToken</code> that you used to submit the
|
|||
|
|
* <code>DeleteSqlInjectionMatchSet</code> request. You can also use this value to
|
|||
|
|
* query the status of the request. For more information, see
|
|||
|
|
* <a>GetChangeTokenStatus</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteSqlInjectionMatchSetResult& WithChangeToken(Aws::String&& value) { SetChangeToken(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>ChangeToken</code> that you used to submit the
|
|||
|
|
* <code>DeleteSqlInjectionMatchSet</code> request. You can also use this value to
|
|||
|
|
* query the status of the request. For more information, see
|
|||
|
|
* <a>GetChangeTokenStatus</a>.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteSqlInjectionMatchSetResult& WithChangeToken(const char* value) { SetChangeToken(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_changeToken;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace WAFRegional
|
|||
|
|
} // namespace Aws
|