Interface CfnWebACL.AsnMatchStatementProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWebACL.AsnMatchStatementProperty.Jsii$Proxy
Enclosing class:
CfnWebACL

@Stability(Stable) public static interface CfnWebACL.AsnMatchStatementProperty extends software.amazon.jsii.JsiiSerializable
A rule statement that inspects web traffic based on the Autonomous System Number (ASN) associated with the request's IP address.

For additional details, see ASN match rule statement in the AWS WAF Developer Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.wafv2.*;
 AsnMatchStatementProperty asnMatchStatementProperty = AsnMatchStatementProperty.builder()
         .asnList(List.of(123))
         .forwardedIpConfig(ForwardedIPConfigurationProperty.builder()
                 .fallbackBehavior("fallbackBehavior")
                 .headerName("headerName")
                 .build())
         .build();
 

See Also: