Show / Hide Table of Contents

Interface ICfnSqlInjectionMatchSetProps

Properties for defining a CfnSqlInjectionMatchSet.

Namespace: Amazon.CDK.AWS.WAF
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnSqlInjectionMatchSetProps
Syntax (vb)
Public Interface 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

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.

Properties

Name

The name, if any, of the SqlInjectionMatchSet .

string Name { get; }
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.

object? SqlInjectionMatchTuples { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX