Class: Aws::WAFRegional::Types::RegexPatternSetUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFRegional::Types::RegexPatternSetUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-wafregional/types.rb
Overview
<note markdown=“1”> This is **AWS WAF Classic** documentation. For more information, see
- AWS WAF Classic][1
-
in the developer guide.
**For the latest version of AWS WAF**, use the AWS WAFV2 API and see
the [AWS WAF Developer Guide]. With the latest version, AWS WAF has a single set of endpoints for regional and global use.
</note>
In an UpdateRegexPatternSet request, ‘RegexPatternSetUpdate` specifies whether to insert or delete a `RegexPatternString` and includes the settings for the `RegexPatternString`.
[1]: docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html [2]: docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action ⇒ String
Specifies whether to insert or delete a ‘RegexPatternString`.
-
#regex_pattern_string ⇒ String
Specifies the regular expression (regex) pattern that you want AWS WAF to search for, such as ‘B[a@]dBt`.
Instance Attribute Details
#action ⇒ String
Specifies whether to insert or delete a ‘RegexPatternString`.
4254 4255 4256 4257 4258 4259 |
# File 'lib/aws-sdk-wafregional/types.rb', line 4254 class RegexPatternSetUpdate < Struct.new( :action, :regex_pattern_string) SENSITIVE = [] include Aws::Structure end |
#regex_pattern_string ⇒ String
Specifies the regular expression (regex) pattern that you want AWS WAF to search for, such as ‘B[a@]dBt`.
4254 4255 4256 4257 4258 4259 |
# File 'lib/aws-sdk-wafregional/types.rb', line 4254 class RegexPatternSetUpdate < Struct.new( :action, :regex_pattern_string) SENSITIVE = [] include Aws::Structure end |