interface ApplicationAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFv2.CfnWebACL.ApplicationAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswafv2#CfnWebACL_ApplicationAttributeProperty |
Java | software.amazon.awscdk.services.wafv2.CfnWebACL.ApplicationAttributeProperty |
Python | aws_cdk.aws_wafv2.CfnWebACL.ApplicationAttributeProperty |
TypeScript | aws-cdk-lib » aws_wafv2 » CfnWebACL » ApplicationAttributeProperty |
Application details defined during the web ACL creation process.
Application attributes help AWS WAF give recommendations for protection packs.
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 applicationAttributeProperty: wafv2.CfnWebACL.ApplicationAttributeProperty = {
name: 'name',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Specifies the attribute name. |
| values | string[] | Specifies the attribute value. |
name
Type:
string
Specifies the attribute name.
values
Type:
string[]
Specifies the attribute value.

.NET
Go
Java
Python
TypeScript