Class: Aws::WAFV2::Types::ChallengeResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::ChallengeResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-wafv2/types.rb
Overview
The result from the inspection of the web request for a valid challenge token.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failure_reason ⇒ String
The reason for failure, populated when the evaluation of the token fails.
-
#response_code ⇒ Integer
The HTTP response code indicating the status of the challenge token in the web request.
-
#solve_timestamp ⇒ Integer
The time that the challenge was last solved for the supplied token.
Instance Attribute Details
#failure_reason ⇒ String
The reason for failure, populated when the evaluation of the token fails.
868 869 870 871 872 873 874 |
# File 'lib/aws-sdk-wafv2/types.rb', line 868 class ChallengeResponse < Struct.new( :response_code, :solve_timestamp, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#response_code ⇒ Integer
The HTTP response code indicating the status of the challenge token in the web request. If the token is missing, invalid, or expired, this code is ‘202 Request Accepted`.
868 869 870 871 872 873 874 |
# File 'lib/aws-sdk-wafv2/types.rb', line 868 class ChallengeResponse < Struct.new( :response_code, :solve_timestamp, :failure_reason) SENSITIVE = [] include Aws::Structure end |
#solve_timestamp ⇒ Integer
The time that the challenge was last solved for the supplied token.
868 869 870 871 872 873 874 |
# File 'lib/aws-sdk-wafv2/types.rb', line 868 class ChallengeResponse < Struct.new( :response_code, :solve_timestamp, :failure_reason) SENSITIVE = [] include Aws::Structure end |