Class: Aws::WAF::Types::GetRegexMatchSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::GetRegexMatchSetRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass GetRegexMatchSetRequest data as a hash:
{
regex_match_set_id: "ResourceId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#regex_match_set_id ⇒ String
The
RegexMatchSetId
of the RegexMatchSet that you want to get.
Instance Attribute Details
#regex_match_set_id ⇒ String
The RegexMatchSetId
of the RegexMatchSet that you want to get.
RegexMatchSetId
is returned by CreateRegexMatchSet and by
ListRegexMatchSets.
2479 2480 2481 2482 2483 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 2479 class GetRegexMatchSetRequest < Struct.new( :regex_match_set_id) SENSITIVE = [] include Aws::Structure end |