/** * 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 WAF { namespace Model { /** *

The response to a GetXssMatchSet request.

See Also:

* AWS * API Reference

*/ class AWS_WAF_API GetXssMatchSetResult { public: GetXssMatchSetResult(); GetXssMatchSetResult(const Aws::AmazonWebServiceResult& result); GetXssMatchSetResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the XssMatchSet that you specified in the * GetXssMatchSet request. For more information, see the following * topics:

  • XssMatchSet: Contains Name, * XssMatchSetId, and an array of XssMatchTuple * objects

  • XssMatchTuple: Each XssMatchTuple * object contains FieldToMatch and TextTransformation *

  • FieldToMatch: Contains Data and * Type

*/ inline const XssMatchSet& GetXssMatchSet() const{ return m_xssMatchSet; } /** *

Information about the XssMatchSet that you specified in the * GetXssMatchSet request. For more information, see the following * topics:

  • XssMatchSet: Contains Name, * XssMatchSetId, and an array of XssMatchTuple * objects

  • XssMatchTuple: Each XssMatchTuple * object contains FieldToMatch and TextTransformation *

  • FieldToMatch: Contains Data and * Type

*/ inline void SetXssMatchSet(const XssMatchSet& value) { m_xssMatchSet = value; } /** *

Information about the XssMatchSet that you specified in the * GetXssMatchSet request. For more information, see the following * topics:

  • XssMatchSet: Contains Name, * XssMatchSetId, and an array of XssMatchTuple * objects

  • XssMatchTuple: Each XssMatchTuple * object contains FieldToMatch and TextTransformation *

  • FieldToMatch: Contains Data and * Type

*/ inline void SetXssMatchSet(XssMatchSet&& value) { m_xssMatchSet = std::move(value); } /** *

Information about the XssMatchSet that you specified in the * GetXssMatchSet request. For more information, see the following * topics:

  • XssMatchSet: Contains Name, * XssMatchSetId, and an array of XssMatchTuple * objects

  • XssMatchTuple: Each XssMatchTuple * object contains FieldToMatch and TextTransformation *

  • FieldToMatch: Contains Data and * Type

*/ inline GetXssMatchSetResult& WithXssMatchSet(const XssMatchSet& value) { SetXssMatchSet(value); return *this;} /** *

Information about the XssMatchSet that you specified in the * GetXssMatchSet request. For more information, see the following * topics:

  • XssMatchSet: Contains Name, * XssMatchSetId, and an array of XssMatchTuple * objects

  • XssMatchTuple: Each XssMatchTuple * object contains FieldToMatch and TextTransformation *

  • FieldToMatch: Contains Data and * Type

*/ inline GetXssMatchSetResult& WithXssMatchSet(XssMatchSet&& value) { SetXssMatchSet(std::move(value)); return *this;} private: XssMatchSet m_xssMatchSet; }; } // namespace Model } // namespace WAF } // namespace Aws