Class: Aws::WAFV2::Types::ResponseInspection

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb

Overview

The criteria for inspecting responses to login requests and account creation requests, used by the ATP and ACFP rule groups to track login and account creation success and failure rates.

Response inspection is available only in web ACLs that protect Amazon CloudFront distributions.

The rule groups evaluates the responses that your protected resources send back to client login and account creation attempts, keeping count of successful and failed attempts from each IP address and client session. Using this information, the rule group labels and mitigates requests from client sessions and IP addresses with too much suspicious activity in a short amount of time.

This is part of the AWSManagedRulesATPRuleSet and AWSManagedRulesACFPRuleSet configurations in ManagedRuleGroupConfig.

Enable response inspection by configuring exactly one component of the response to inspect, for example, Header or StatusCode. You can't configure more than one component for inspection. If you don't configure any of the response inspection options, response inspection is disabled.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#body_containsTypes::ResponseInspectionBodyContains

Configures inspection of the response body for success and failure indicators. WAF can inspect the first 65,536 bytes (64 KB) of the response body.



7237
7238
7239
7240
7241
7242
7243
7244
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 7237

class ResponseInspection < Struct.new(
  :status_code,
  :header,
  :body_contains,
  :json)
  SENSITIVE = []
  include Aws::Structure
end

#headerTypes::ResponseInspectionHeader

Configures inspection of the response header for success and failure indicators.



7237
7238
7239
7240
7241
7242
7243
7244
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 7237

class ResponseInspection < Struct.new(
  :status_code,
  :header,
  :body_contains,
  :json)
  SENSITIVE = []
  include Aws::Structure
end

#jsonTypes::ResponseInspectionJson

Configures inspection of the response JSON for success and failure indicators. WAF can inspect the first 65,536 bytes (64 KB) of the response JSON.



7237
7238
7239
7240
7241
7242
7243
7244
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 7237

class ResponseInspection < Struct.new(
  :status_code,
  :header,
  :body_contains,
  :json)
  SENSITIVE = []
  include Aws::Structure
end

#status_codeTypes::ResponseInspectionStatusCode

Configures inspection of the response status code for success and failure indicators.



7237
7238
7239
7240
7241
7242
7243
7244
# File 'gems/aws-sdk-wafv2/lib/aws-sdk-wafv2/types.rb', line 7237

class ResponseInspection < Struct.new(
  :status_code,
  :header,
  :body_contains,
  :json)
  SENSITIVE = []
  include Aws::Structure
end