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.
1710 1711 1712 1713 1714 1715 |
# File 'lib/aws-sdk-wafv2/types.rb', line 1710 class DefaultAction < Struct.new( :block, :allow) SENSITIVE = [] include Aws::Structure end |
#block ⇒ Types::BlockAction
Specifies that WAF should block requests by default.
1710 1711 1712 1713 1714 1715 |
# File 'lib/aws-sdk-wafv2/types.rb', line 1710 class DefaultAction < Struct.new( :block, :allow) SENSITIVE = [] include Aws::Structure end |