Class: Aws::WAFRegional::Types::GetXssMatchSetResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFRegional::Types::GetXssMatchSetResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-wafregional/types.rb
Overview
The response to a GetXssMatchSet request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#xss_match_set ⇒ Types::XssMatchSet
Information about the XssMatchSet that you specified in the ‘GetXssMatchSet` request.
Instance Attribute Details
#xss_match_set ⇒ Types::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`
2509 2510 2511 2512 2513 |
# File 'lib/aws-sdk-wafregional/types.rb', line 2509 class GetXssMatchSetResponse < Struct.new( :xss_match_set) SENSITIVE = [] include Aws::Structure end |