Class CfnWebACL.ApplicationConfigProperty
A list of ApplicationAttribute s that contains information about the application.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.WAFv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWebACL.ApplicationConfigProperty : CfnWebACL.IApplicationConfigProperty
Syntax (vb)
Public Class CfnWebACL.ApplicationConfigProperty Implements CfnWebACL.IApplicationConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.WAFv2;
var applicationConfigProperty = new ApplicationConfigProperty {
Attributes = new [] { new ApplicationAttributeProperty {
Name = "name",
Values = new [] { "values" }
} }
};
Synopsis
Constructors
| ApplicationConfigProperty() | A list of |
Properties
| Attributes | Contains the attribute name and a list of values for that attribute. |
Constructors
ApplicationConfigProperty()
A list of ApplicationAttribute s that contains information about the application.
public ApplicationConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.WAFv2;
var applicationConfigProperty = new ApplicationConfigProperty {
Attributes = new [] { new ApplicationAttributeProperty {
Name = "name",
Values = new [] { "values" }
} }
};
Properties
Attributes
Contains the attribute name and a list of values for that attribute.
public object Attributes { get; set; }