Show / Hide Table of Contents

Class CfnSqlInjectionMatchSet.SqlInjectionMatchTupleProperty

AWS WAF Classic support will end on September 30, 2025.

Inheritance
object
CfnSqlInjectionMatchSet.SqlInjectionMatchTupleProperty
Implements
CfnSqlInjectionMatchSet.ISqlInjectionMatchTupleProperty
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.WAF
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSqlInjectionMatchSet.SqlInjectionMatchTupleProperty : CfnSqlInjectionMatchSet.ISqlInjectionMatchTupleProperty
Syntax (vb)
Public Class CfnSqlInjectionMatchSet.SqlInjectionMatchTupleProperty Implements CfnSqlInjectionMatchSet.ISqlInjectionMatchTupleProperty
Remarks
This is <em>AWS WAF Classic</em> documentation. For more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.

For the latest version of AWS WAF , use the AWS WAF V2 API and see the AWS WAF Developer Guide . With the latest version, AWS WAF has a single set of endpoints for regional and global use.

Specifies the part of a web request that you want AWS WAF to inspect for snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the name of the header.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sqlinjectionmatchset-sqlinjectionmatchtuple.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.WAF;

             var sqlInjectionMatchTupleProperty = new SqlInjectionMatchTupleProperty {
                 FieldToMatch = new FieldToMatchProperty {
                     Type = "type",

                     // the properties below are optional
                     Data = "data"
                 },
                 TextTransformation = "textTransformation"
             };

Synopsis

Constructors

SqlInjectionMatchTupleProperty()

AWS WAF Classic support will end on September 30, 2025.

Properties

FieldToMatch

The part of a web request that you want to inspect, such as a specified header or a query string.

TextTransformation

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

Constructors

SqlInjectionMatchTupleProperty()

AWS WAF Classic support will end on September 30, 2025.

public SqlInjectionMatchTupleProperty()
Remarks
This is <em>AWS WAF Classic</em> documentation. For more information, see <a href="https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html">AWS WAF Classic</a> in the developer guide.

For the latest version of AWS WAF , use the AWS WAF V2 API and see the AWS WAF Developer Guide . With the latest version, AWS WAF has a single set of endpoints for regional and global use.

Specifies the part of a web request that you want AWS WAF to inspect for snippets of malicious SQL code and, if you want AWS WAF to inspect a header, the name of the header.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sqlinjectionmatchset-sqlinjectionmatchtuple.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.WAF;

             var sqlInjectionMatchTupleProperty = new SqlInjectionMatchTupleProperty {
                 FieldToMatch = new FieldToMatchProperty {
                     Type = "type",

                     // the properties below are optional
                     Data = "data"
                 },
                 TextTransformation = "textTransformation"
             };

Properties

FieldToMatch

The part of a web request that you want to inspect, such as a specified header or a query string.

public object FieldToMatch { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sqlinjectionmatchset-sqlinjectionmatchtuple.html#cfn-waf-sqlinjectionmatchset-sqlinjectionmatchtuple-fieldtomatch

TextTransformation

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

public string TextTransformation { get; set; }
Property Value

string

Remarks

If you specify a transformation, AWS WAF performs the transformation on FieldToMatch before inspecting it for a match.

You can only specify a single type of TextTransformation.

CMD_LINE

When you're concerned that attackers are injecting an operating system command line command and using unusual formatting to disguise some or all of the command, use this option to perform the following transformations:

    COMPRESS_WHITE_SPACE

    Use this option to replace the following characters with a space character (decimal 32):

      COMPRESS_WHITE_SPACE also replaces multiple spaces with one space.

      HTML_ENTITY_DECODE

      Use this option to replace HTML-encoded characters with unencoded characters. HTML_ENTITY_DECODE performs the following operations:

        LOWERCASE

        Use this option to convert uppercase letters (A-Z) to lowercase (a-z).

        URL_DECODE

        Use this option to decode a URL-encoded value.

        NONE

        Specify NONE if you don't want to perform any text transformations.

        See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sqlinjectionmatchset-sqlinjectionmatchtuple.html#cfn-waf-sqlinjectionmatchset-sqlinjectionmatchtuple-texttransformation

        Implements

        CfnSqlInjectionMatchSet.ISqlInjectionMatchTupleProperty
        Back to top Generated by DocFX