interface RateLimitJA4FingerprintProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFv2.Mixins.CfnWebACLPropsMixin.RateLimitJA4FingerprintProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafv2/mixins#CfnWebACLPropsMixin_RateLimitJA4FingerprintProperty |
Java | software.amazon.awscdk.mixins.preview.services.wafv2.mixins.CfnWebACLPropsMixin.RateLimitJA4FingerprintProperty |
Python | aws_cdk.mixins_preview.aws_wafv2.mixins.CfnWebACLPropsMixin.RateLimitJA4FingerprintProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wafv2 » mixins » CfnWebACLPropsMixin » RateLimitJA4FingerprintProperty |
Use the request's JA4 fingerprint derived from the TLS Client Hello of an incoming request as an aggregate key.
If you use a single JA4 fingerprint as your custom key, then each value fully defines an aggregation instance.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as wafv2_mixins } from '@aws-cdk/mixins-preview/aws-wafv2';
const rateLimitJA4FingerprintProperty: wafv2_mixins.CfnWebACLPropsMixin.RateLimitJA4FingerprintProperty = {
fallbackBehavior: 'fallbackBehavior',
};
Properties
| Name | Type | Description |
|---|---|---|
| fallback | string | The match status to assign to the web request if there is insufficient TSL Client Hello information to compute the JA4 fingerprint. |
fallbackBehavior?
Type:
string
(optional)
The match status to assign to the web request if there is insufficient TSL Client Hello information to compute the JA4 fingerprint.
You can specify the following fallback behaviors:
MATCH- Treat the web request as matching the rule statement. AWS WAF applies the rule action to the request.NO_MATCH- Treat the web request as not matching the rule statement.

.NET
Go
Java
Python
TypeScript