interface ApplicationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WAFv2.CfnWebACLPropsMixin.ApplicationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswafv2#CfnWebACLPropsMixin_ApplicationConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wafv2.CfnWebACLPropsMixin.ApplicationConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_wafv2.CfnWebACLPropsMixin.ApplicationConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wafv2 » CfnWebACLPropsMixin » 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/cfn-property-mixins';
const applicationConfigProperty: wafv2.CfnWebACLPropsMixin.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)[]
(optional)
Contains the attribute name and a list of values for that attribute.

.NET
Go
Java
Python
TypeScript