Class: Aws::WAFV2::Types::NotStatement
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::NotStatement
- Defined in:
- gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb
Overview
A logical rule statement used to negate the results of another rule
statement. You provide one Statement within the NotStatement
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#statement ⇒ Types::Statement
The statement to negate.
Instance Attribute Details
#statement ⇒ Types::Statement
The statement to negate. You can use any statement that can be nested.
5930 5931 5932 5933 5934 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 5930 class NotStatement < Struct.new( :statement) SENSITIVE = [] include Aws::Structure end |