/**
* 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 cross-site scripting attacks and
* indicates whether you want to add the specification to an XssMatchSet or
* delete it from an XssMatchSet
.See Also:
AWS
* API Reference
Specify INSERT
to add an XssMatchSetUpdate to an
* XssMatchSet. Use DELETE
to remove an
* XssMatchSetUpdate
from an XssMatchSet
.
Specify INSERT
to add an XssMatchSetUpdate to an
* XssMatchSet. Use DELETE
to remove an
* XssMatchSetUpdate
from an XssMatchSet
.
Specify INSERT
to add an XssMatchSetUpdate to an
* XssMatchSet. Use DELETE
to remove an
* XssMatchSetUpdate
from an XssMatchSet
.
Specify INSERT
to add an XssMatchSetUpdate to an
* XssMatchSet. Use DELETE
to remove an
* XssMatchSetUpdate
from an XssMatchSet
.
Specify INSERT
to add an XssMatchSetUpdate to an
* XssMatchSet. Use DELETE
to remove an
* XssMatchSetUpdate
from an XssMatchSet
.
Specify INSERT
to add an XssMatchSetUpdate to an
* XssMatchSet. Use DELETE
to remove an
* XssMatchSetUpdate
from an XssMatchSet
.
Specifies the part of a web request that you want AWS WAF to inspect for * cross-site scripting attacks and, if you want AWS WAF to inspect a header, the * name of the header.
*/ inline const XssMatchTuple& GetXssMatchTuple() const{ return m_xssMatchTuple; } /** *Specifies the part of a web request that you want AWS WAF to inspect for * cross-site scripting attacks and, if you want AWS WAF to inspect a header, the * name of the header.
*/ inline bool XssMatchTupleHasBeenSet() const { return m_xssMatchTupleHasBeenSet; } /** *Specifies the part of a web request that you want AWS WAF to inspect for * cross-site scripting attacks and, if you want AWS WAF to inspect a header, the * name of the header.
*/ inline void SetXssMatchTuple(const XssMatchTuple& value) { m_xssMatchTupleHasBeenSet = true; m_xssMatchTuple = value; } /** *Specifies the part of a web request that you want AWS WAF to inspect for * cross-site scripting attacks and, if you want AWS WAF to inspect a header, the * name of the header.
*/ inline void SetXssMatchTuple(XssMatchTuple&& value) { m_xssMatchTupleHasBeenSet = true; m_xssMatchTuple = std::move(value); } /** *Specifies the part of a web request that you want AWS WAF to inspect for * cross-site scripting attacks and, if you want AWS WAF to inspect a header, the * name of the header.
*/ inline XssMatchSetUpdate& WithXssMatchTuple(const XssMatchTuple& value) { SetXssMatchTuple(value); return *this;} /** *Specifies the part of a web request that you want AWS WAF to inspect for * cross-site scripting attacks and, if you want AWS WAF to inspect a header, the * name of the header.
*/ inline XssMatchSetUpdate& WithXssMatchTuple(XssMatchTuple&& value) { SetXssMatchTuple(std::move(value)); return *this;} private: ChangeAction m_action; bool m_actionHasBeenSet = false; XssMatchTuple m_xssMatchTuple; bool m_xssMatchTupleHasBeenSet = false; }; } // namespace Model } // namespace WAF } // namespace Aws