Show / Hide Table of Contents

Class CfnSqlInjectionMatchSetProps

Properties for defining a CfnSqlInjectionMatchSet.

Inheritance
object
CfnSqlInjectionMatchSetProps
Implements
ICfnSqlInjectionMatchSetProps
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 CfnSqlInjectionMatchSetProps : ICfnSqlInjectionMatchSetProps
Syntax (vb)
Public Class CfnSqlInjectionMatchSetProps Implements ICfnSqlInjectionMatchSetProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.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 cfnSqlInjectionMatchSetProps = new CfnSqlInjectionMatchSetProps {
                 Name = "name",

                 // the properties below are optional
                 SqlInjectionMatchTuples = new [] { new SqlInjectionMatchTupleProperty {
                     FieldToMatch = new FieldToMatchProperty {
                         Type = "type",

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

Synopsis

Constructors

CfnSqlInjectionMatchSetProps()

Properties for defining a CfnSqlInjectionMatchSet.

Properties

Name

The name, if any, of the SqlInjectionMatchSet .

SqlInjectionMatchTuples

Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.

Constructors

CfnSqlInjectionMatchSetProps()

Properties for defining a CfnSqlInjectionMatchSet.

public CfnSqlInjectionMatchSetProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.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 cfnSqlInjectionMatchSetProps = new CfnSqlInjectionMatchSetProps {
                 Name = "name",

                 // the properties below are optional
                 SqlInjectionMatchTuples = new [] { new SqlInjectionMatchTupleProperty {
                     FieldToMatch = new FieldToMatchProperty {
                         Type = "type",

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

Properties

Name

The name, if any, of the SqlInjectionMatchSet .

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name

SqlInjectionMatchTuples

Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-sqlinjectionmatchtuples

Implements

ICfnSqlInjectionMatchSetProps
Back to top Generated by DocFX