Class: Aws::WAFV2::Types::ImmunityTimeProperty
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::ImmunityTimeProperty
- Defined in:
- gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb
Overview
Used for CAPTCHA and challenge token settings. Determines how long a
CAPTCHA
or challenge timestamp remains valid after WAF updates it
for a successful CAPTCHA
or challenge response.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#immunity_time ⇒ Integer
The amount of time, in seconds, that a
CAPTCHA
or challenge timestamp is considered valid by WAF.
Instance Attribute Details
#immunity_time ⇒ Integer
The amount of time, in seconds, that a CAPTCHA
or challenge
timestamp is considered valid by WAF. The default setting is 300.
For the Challenge action, the minimum setting is 300.
4017 4018 4019 4020 4021 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 4017 class ImmunityTimeProperty < Struct.new( :immunity_time) SENSITIVE = [] include Aws::Structure end |