Class: Aws::WAFRegional::Types::RegexPatternSetUpdate
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::WAFRegional::Types::RegexPatternSetUpdate
 
 
- Defined in:
 - gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/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.
      4254 4255 4256 4257 4258 4259  | 
    
      # File 'gems/aws-sdk-wafregional/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@]dB[o0]t.
      4254 4255 4256 4257 4258 4259  | 
    
      # File 'gems/aws-sdk-wafregional/lib/aws-sdk-wafregional/types.rb', line 4254 class RegexPatternSetUpdate < Struct.new( :action, :regex_pattern_string) SENSITIVE = [] include Aws::Structure end  |