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
Note:
When making an API call, you may pass ImmunityTimeProperty data as a hash:
{
immunity_time: 1, # required
}
Determines how long a CAPTCHA
token remains valid after the client
successfully solves a CAPTCHA
puzzle.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#immunity_time ⇒ Integer
The amount of time, in seconds, that a
CAPTCHA
token is valid.
Instance Attribute Details
#immunity_time ⇒ Integer
The amount of time, in seconds, that a CAPTCHA
token is valid. The
default setting is 300.
5679 5680 5681 5682 5683 |
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 5679 class ImmunityTimeProperty < Struct.new( :immunity_time) SENSITIVE = [] include Aws::Structure end |