interface RateLimitJA3FingerprintProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFv2.Mixins.CfnWebACLPropsMixin.RateLimitJA3FingerprintProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafv2/mixins#CfnWebACLPropsMixin_RateLimitJA3FingerprintProperty |
Java | software.amazon.awscdk.mixins.preview.services.wafv2.mixins.CfnWebACLPropsMixin.RateLimitJA3FingerprintProperty |
Python | aws_cdk.mixins_preview.aws_wafv2.mixins.CfnWebACLPropsMixin.RateLimitJA3FingerprintProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wafv2 » mixins » CfnWebACLPropsMixin » RateLimitJA3FingerprintProperty |
Use the request's JA3 fingerprint derived from the TLS Client Hello of an incoming request as an aggregate key.
If you use a single JA3 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 rateLimitJA3FingerprintProperty: wafv2_mixins.CfnWebACLPropsMixin.RateLimitJA3FingerprintProperty = {
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 JA3 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 JA3 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