Show / Hide Table of Contents

Class CfnRuleGroup.SingleQueryArgumentProperty

Inspect one query argument in the web request, identified by name, for example UserName or SalesRegion .

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

The name isn't case sensitive.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Example JSON: "SingleQueryArgument": { "Name": "myArgument" }

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-singlequeryargument.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 singleQueryArgumentProperty = new SingleQueryArgumentProperty {
                 Name = "name"
             };

Synopsis

Constructors

SingleQueryArgumentProperty()

Inspect one query argument in the web request, identified by name, for example UserName or SalesRegion .

Properties

Name

The name of the query argument to inspect.

Constructors

SingleQueryArgumentProperty()

Inspect one query argument in the web request, identified by name, for example UserName or SalesRegion .

public SingleQueryArgumentProperty()
Remarks

The name isn't case sensitive.

This is used to indicate the web request component to inspect, in the FieldToMatch specification.

Example JSON: "SingleQueryArgument": { "Name": "myArgument" }

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-singlequeryargument.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 singleQueryArgumentProperty = new SingleQueryArgumentProperty {
                 Name = "name"
             };

Properties

Name

The name of the query argument to inspect.

public string Name { get; set; }
Property Value

string

Remarks

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

Implements

CfnRuleGroup.ISingleQueryArgumentProperty
Back to top Generated by DocFX