Class: Aws::WAFV2::Types::OrStatement
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::WAFV2::Types::OrStatement
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-wafv2/types.rb
 
Overview
A logical rule statement used to combine other rule statements with OR logic. You provide more than one Statement within the ‘OrStatement`.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #statements  ⇒ Array<Types::Statement> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The statements to combine with OR logic.
 
Instance Attribute Details
#statements ⇒ Array<Types::Statement>
The statements to combine with OR logic. You can use any statements that can be nested.
      5938 5939 5940 5941 5942  | 
    
      # File 'lib/aws-sdk-wafv2/types.rb', line 5938 class OrStatement < Struct.new( :statements) SENSITIVE = [] include Aws::Structure end  |