Show / Hide Table of Contents

Class CfnRuleGroup.CountProperty

Count traffic towards application.

Inheritance
object
CfnRuleGroup.CountProperty
Implements
CfnRuleGroup.ICountProperty
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 CfnRuleGroup.CountProperty : CfnRuleGroup.ICountProperty
Syntax (vb)
Public Class CfnRuleGroup.CountProperty Implements CfnRuleGroup.ICountProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-count.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 countProperty = new CountProperty {
                 CustomRequestHandling = new CustomRequestHandlingProperty {
                     InsertHeaders = new [] { new CustomHTTPHeaderProperty {
                         Name = "name",
                         Value = "value"
                     } }
                 }
             };

Synopsis

Constructors

CountProperty()

Count traffic towards application.

Properties

CustomRequestHandling

Custom request handling.

Constructors

CountProperty()

Count traffic towards application.

public CountProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-count.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 countProperty = new CountProperty {
                 CustomRequestHandling = new CustomRequestHandlingProperty {
                     InsertHeaders = new [] { new CustomHTTPHeaderProperty {
                         Name = "name",
                         Value = "value"
                     } }
                 }
             };

Properties

CustomRequestHandling

Custom request handling.

public object? CustomRequestHandling { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-count.html#cfn-wafv2-rulegroup-count-customrequesthandling

Type union: either IResolvable or CfnRuleGroup.ICustomRequestHandlingProperty

Implements

CfnRuleGroup.ICountProperty
Back to top Generated by DocFX