Class: Aws::WAF::Types::RegexPatternSetUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::RegexPatternSetUpdate
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
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.
In an UpdateRegexPatternSet request, RegexPatternSetUpdate
specifies
whether to insert or delete a RegexPatternString
and includes the
settings for the RegexPatternString
.
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@]dB[o0]t
.
Instance Attribute Details
#action ⇒ String
Specifies whether to insert or delete a RegexPatternString
.
4126 4127 4128 4129 4130 4131 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 4126 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@]dB[o0]t
.
4126 4127 4128 4129 4130 4131 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 4126 class RegexPatternSetUpdate < Struct.new( :action, :regex_pattern_string) SENSITIVE = [] include Aws::Structure end |