Show / Hide Table of Contents

Class CfnWebACLPropsMixin.RateLimitCookieProperty

Specifies a cookie as an aggregate key for a rate-based rule.

Inheritance
object
CfnWebACLPropsMixin.RateLimitCookieProperty
Implements
CfnWebACLPropsMixin.IRateLimitCookieProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.WAFv2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnWebACLPropsMixin.RateLimitCookieProperty : CfnWebACLPropsMixin.IRateLimitCookieProperty
Syntax (vb)
Public Class CfnWebACLPropsMixin.RateLimitCookieProperty Implements CfnWebACLPropsMixin.IRateLimitCookieProperty
Remarks

Each distinct value in the cookie contributes to the aggregation instance. If you use a single cookie as your custom key, then each value fully defines an aggregation instance.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ratelimitcookie.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.Mixins.Preview.AWS.WAFv2.Mixins;

             var rateLimitCookieProperty = new RateLimitCookieProperty {
                 Name = "name",
                 TextTransformations = new [] { new TextTransformationProperty {
                     Priority = 123,
                     Type = "type"
                 } }
             };

Synopsis

Constructors

RateLimitCookieProperty()

Specifies a cookie as an aggregate key for a rate-based rule.

Properties

Name

The name of the cookie to use.

TextTransformations

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.

Constructors

RateLimitCookieProperty()

Specifies a cookie as an aggregate key for a rate-based rule.

public RateLimitCookieProperty()
Remarks

Each distinct value in the cookie contributes to the aggregation instance. If you use a single cookie as your custom key, then each value fully defines an aggregation instance.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ratelimitcookie.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.Mixins.Preview.AWS.WAFv2.Mixins;

             var rateLimitCookieProperty = new RateLimitCookieProperty {
                 Name = "name",
                 TextTransformations = new [] { new TextTransformationProperty {
                     Priority = 123,
                     Type = "type"
                 } }
             };

Properties

Name

The name of the cookie to use.

public string? Name { get; set; }
Property Value

string

Remarks

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

TextTransformations

Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection.

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

object

Remarks

Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, AWS WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the transformed component contents.

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

Type union: either IResolvable or (either IResolvable or CfnWebACLPropsMixin.ITextTransformationProperty)[]

Implements

CfnWebACLPropsMixin.IRateLimitCookieProperty
Back to top Generated by DocFX