interface ApplicationAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFv2.Mixins.CfnWebACLPropsMixin.ApplicationAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafv2/mixins#CfnWebACLPropsMixin_ApplicationAttributeProperty |
Java | software.amazon.awscdk.mixins.preview.services.wafv2.mixins.CfnWebACLPropsMixin.ApplicationAttributeProperty |
Python | aws_cdk.mixins_preview.aws_wafv2.mixins.CfnWebACLPropsMixin.ApplicationAttributeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wafv2 » mixins » CfnWebACLPropsMixin » 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 { mixins as wafv2_mixins } from '@aws-cdk/mixins-preview/aws-wafv2';
const applicationAttributeProperty: wafv2_mixins.CfnWebACLPropsMixin.ApplicationAttributeProperty = {
name: 'name',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | Specifies the attribute name. |
| values? | string[] | Specifies the attribute value. |
name?
Type:
string
(optional)
Specifies the attribute name.
values?
Type:
string[]
(optional)
Specifies the attribute value.

.NET
Go
Java
Python
TypeScript