interface ApplicationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFv2.CfnWebACL.ApplicationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswafv2#CfnWebACL_ApplicationConfigProperty |
Java | software.amazon.awscdk.services.wafv2.CfnWebACL.ApplicationConfigProperty |
Python | aws_cdk.aws_wafv2.CfnWebACL.ApplicationConfigProperty |
TypeScript | aws-cdk-lib » aws_wafv2 » CfnWebACL » ApplicationConfigProperty |
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 { aws_wafv2 as wafv2 } from 'aws-cdk-lib';
const applicationConfigProperty: wafv2.CfnWebACL.ApplicationConfigProperty = {
attributes: [{
name: 'name',
values: ['values'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| attributes | IResolvable | (IResolvable | Application)[] | Contains the attribute name and a list of values for that attribute. |
attributes
Type:
IResolvable | (IResolvable | Application)[]
Contains the attribute name and a list of values for that attribute.

.NET
Go
Java
Python
TypeScript