interface OnSourceDDoSProtectionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFv2.Mixins.CfnWebACLPropsMixin.OnSourceDDoSProtectionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafv2/mixins#CfnWebACLPropsMixin_OnSourceDDoSProtectionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.wafv2.mixins.CfnWebACLPropsMixin.OnSourceDDoSProtectionConfigProperty |
Python | aws_cdk.mixins_preview.aws_wafv2.mixins.CfnWebACLPropsMixin.OnSourceDDoSProtectionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wafv2 » mixins » CfnWebACLPropsMixin » OnSourceDDoSProtectionConfigProperty |
Configures the level of DDoS protection that applies to web ACLs associated with Application Load Balancers.
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 onSourceDDoSProtectionConfigProperty: wafv2_mixins.CfnWebACLPropsMixin.OnSourceDDoSProtectionConfigProperty = {
albLowReputationMode: 'albLowReputationMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| alb | string | The level of DDoS protection that applies to web ACLs associated with Application Load Balancers. |
albLowReputationMode?
Type:
string
(optional)
The level of DDoS protection that applies to web ACLs associated with Application Load Balancers.
ACTIVE_UNDER_DDOS protection is enabled by default whenever a web ACL is associated with an Application Load Balancer. In the event that an Application Load Balancer experiences high-load conditions or suspected DDoS attacks, the ACTIVE_UNDER_DDOS protection automatically rate limits traffic from known low reputation sources without disrupting Application Load Balancer availability. ALWAYS_ON protection provides constant, always-on monitoring of known low reputation sources for suspected DDoS attacks. While this provides a higher level of protection, there may be potential impacts on legitimate traffic.

.NET
Go
Java
Python
TypeScript