Class: Aws::WAF::Types::GetXssMatchSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::GetXssMatchSetRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass GetXssMatchSetRequest data as a hash:
{
xss_match_set_id: "ResourceId", # required
}
A request to get an XssMatchSet.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#xss_match_set_id ⇒ String
The
XssMatchSetId
of the XssMatchSet that you want to get.
Instance Attribute Details
#xss_match_set_id ⇒ String
The XssMatchSetId
of the XssMatchSet that you want to get.
XssMatchSetId
is returned by CreateXssMatchSet and by
ListXssMatchSets.
2847 2848 2849 2850 2851 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 2847 class GetXssMatchSetRequest < Struct.new( :xss_match_set_id) SENSITIVE = [] include Aws::Structure end |