Interface CfnWebACL.ApplicationConfigProperty

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

@Stability(Stable) public static interface CfnWebACL.ApplicationConfigProperty extends software.amazon.jsii.JsiiSerializable
A list of ApplicationAttribute s that contains information about the application.

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.*;
 ApplicationConfigProperty applicationConfigProperty = ApplicationConfigProperty.builder()
         .attributes(List.of(ApplicationAttributeProperty.builder()
                 .name("name")
                 .values(List.of("values"))
                 .build()))
         .build();
 

See Also: