Class: Aws::WAFV2::Types::DefaultAction
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::WAFV2::Types::DefaultAction
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-wafv2/types.rb
 
Overview
In a WebACL, this is the action that you want WAF to perform when a web request doesn’t match any of the rules in the ‘WebACL`. The default action must be a terminating action.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #allow  ⇒ Types::AllowAction 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies that WAF should allow requests by default.
 - 
  
    
      #block  ⇒ Types::BlockAction 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies that WAF should block requests by default.
 
Instance Attribute Details
#allow ⇒ Types::AllowAction
Specifies that WAF should allow requests by default.
      1788 1789 1790 1791 1792 1793  | 
    
      # File 'lib/aws-sdk-wafv2/types.rb', line 1788 class DefaultAction < Struct.new( :block, :allow) SENSITIVE = [] include Aws::Structure end  | 
  
#block ⇒ Types::BlockAction
Specifies that WAF should block requests by default.
      1788 1789 1790 1791 1792 1793  | 
    
      # File 'lib/aws-sdk-wafv2/types.rb', line 1788 class DefaultAction < Struct.new( :block, :allow) SENSITIVE = [] include Aws::Structure end  |