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.
5946 5947 5948 5949 5950 |
# File 'lib/aws-sdk-wafv2/types.rb', line 5946 class OrStatement < Struct.new( :statements) SENSITIVE = [] include Aws::Structure end |