Show / Hide Table of Contents

Class CfnWebACL.ApplicationConfigProperty

A list of ApplicationAttribute s that contains information about the application.

Inheritance
object
CfnWebACL.ApplicationConfigProperty
Implements
CfnWebACL.IApplicationConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-applicationconfig.html

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 ApplicationAttribute s that contains information about the application.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-applicationconfig.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-applicationconfig.html#cfn-wafv2-webacl-applicationconfig-attributes

Type union: either IResolvable or (either IResolvable or CfnWebACL.IApplicationAttributeProperty)[]

Implements

CfnWebACL.IApplicationConfigProperty
Back to top Generated by DocFX