Class: Aws::WAF::Types::GetXssMatchSetResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::GetXssMatchSetResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-waf/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`
2414 2415 2416 2417 2418 |
# File 'lib/aws-sdk-waf/types.rb', line 2414 class GetXssMatchSetResponse < Struct.new( :xss_match_set) SENSITIVE = [] include Aws::Structure end |