Class: Aws::WAF::Types::GetRegexPatternSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::GetRegexPatternSetRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass GetRegexPatternSetRequest data as a hash:
{
regex_pattern_set_id: "ResourceId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#regex_pattern_set_id ⇒ String
The
RegexPatternSetId
of the RegexPatternSet that you want to get.
Instance Attribute Details
#regex_pattern_set_id ⇒ String
The RegexPatternSetId
of the RegexPatternSet that you want to get.
RegexPatternSetId
is returned by CreateRegexPatternSet and by
ListRegexPatternSets.
2514 2515 2516 2517 2518 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 2514 class GetRegexPatternSetRequest < Struct.new( :regex_pattern_set_id) SENSITIVE = [] include Aws::Structure end |