interface ApplicationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFv2.Mixins.CfnWebACLPropsMixin.ApplicationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafv2/mixins#CfnWebACLPropsMixin_ApplicationConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.wafv2.mixins.CfnWebACLPropsMixin.ApplicationConfigProperty |
Python | aws_cdk.mixins_preview.aws_wafv2.mixins.CfnWebACLPropsMixin.ApplicationConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wafv2 » mixins » 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 { mixins as wafv2_mixins } from '@aws-cdk/mixins-preview/aws-wafv2';
const applicationConfigProperty: wafv2_mixins.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