/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include This is AWS WAF Classic documentation. For more information,
* see AWS
* WAF Classic in the developer guide. For the latest version of AWS
* WAF, use the AWS WAFV2 API and see the AWS
* WAF Developer Guide. With the latest version, AWS WAF has a single set of
* endpoints for regional and global use. Specifies the part of a
* web request that you want to inspect for snippets of malicious SQL code and
* indicates whether you want to add the specification to a
* SqlInjectionMatchSet or delete it from a
* SqlInjectionMatchSet
.See Also:
AWS
* API Reference
Specify INSERT
to add a SqlInjectionMatchSetUpdate to a
* SqlInjectionMatchSet. Use DELETE
to remove a
* SqlInjectionMatchSetUpdate
from a
* SqlInjectionMatchSet
.
Specify INSERT
to add a SqlInjectionMatchSetUpdate to a
* SqlInjectionMatchSet. Use DELETE
to remove a
* SqlInjectionMatchSetUpdate
from a
* SqlInjectionMatchSet
.
Specify INSERT
to add a SqlInjectionMatchSetUpdate to a
* SqlInjectionMatchSet. Use DELETE
to remove a
* SqlInjectionMatchSetUpdate
from a
* SqlInjectionMatchSet
.
Specify INSERT
to add a SqlInjectionMatchSetUpdate to a
* SqlInjectionMatchSet. Use DELETE
to remove a
* SqlInjectionMatchSetUpdate
from a
* SqlInjectionMatchSet
.
Specify INSERT
to add a SqlInjectionMatchSetUpdate to a
* SqlInjectionMatchSet. Use DELETE
to remove a
* SqlInjectionMatchSetUpdate
from a
* SqlInjectionMatchSet
.
Specify INSERT
to add a SqlInjectionMatchSetUpdate to a
* SqlInjectionMatchSet. Use DELETE
to remove a
* SqlInjectionMatchSetUpdate
from a
* SqlInjectionMatchSet
.
Specifies the part of a web request that you want AWS WAF to inspect for * snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the * name of the header.
*/ inline const SqlInjectionMatchTuple& GetSqlInjectionMatchTuple() const{ return m_sqlInjectionMatchTuple; } /** *Specifies the part of a web request that you want AWS WAF to inspect for * snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the * name of the header.
*/ inline bool SqlInjectionMatchTupleHasBeenSet() const { return m_sqlInjectionMatchTupleHasBeenSet; } /** *Specifies the part of a web request that you want AWS WAF to inspect for * snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the * name of the header.
*/ inline void SetSqlInjectionMatchTuple(const SqlInjectionMatchTuple& value) { m_sqlInjectionMatchTupleHasBeenSet = true; m_sqlInjectionMatchTuple = value; } /** *Specifies the part of a web request that you want AWS WAF to inspect for * snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the * name of the header.
*/ inline void SetSqlInjectionMatchTuple(SqlInjectionMatchTuple&& value) { m_sqlInjectionMatchTupleHasBeenSet = true; m_sqlInjectionMatchTuple = std::move(value); } /** *Specifies the part of a web request that you want AWS WAF to inspect for * snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the * name of the header.
*/ inline SqlInjectionMatchSetUpdate& WithSqlInjectionMatchTuple(const SqlInjectionMatchTuple& value) { SetSqlInjectionMatchTuple(value); return *this;} /** *Specifies the part of a web request that you want AWS WAF to inspect for * snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the * name of the header.
*/ inline SqlInjectionMatchSetUpdate& WithSqlInjectionMatchTuple(SqlInjectionMatchTuple&& value) { SetSqlInjectionMatchTuple(std::move(value)); return *this;} private: ChangeAction m_action; bool m_actionHasBeenSet = false; SqlInjectionMatchTuple m_sqlInjectionMatchTuple; bool m_sqlInjectionMatchTupleHasBeenSet = false; }; } // namespace Model } // namespace WAF } // namespace Aws