Interface CfnWebACLPropsMixin.ApplicationConfigProperty

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

@Stability(Stable) public static interface CfnWebACLPropsMixin.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.cfnpropertymixins.services.wafv2.*;
 ApplicationConfigProperty applicationConfigProperty = ApplicationConfigProperty.builder()
         .attributes(List.of(ApplicationAttributeProperty.builder()
                 .name("name")
                 .values(List.of("values"))
                 .build()))
         .build();
 

See Also: