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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWebACL.ApplicationConfigPropertystatic final classAn implementation forCfnWebACL.ApplicationConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Contains the attribute name and a list of values for that attribute.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributes
Contains the attribute name and a list of values for that attribute.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnWebACL.ApplicationAttributeProperty>- See Also:
-
builder
-