Show / Hide Table of Contents

Class CfnSqlInjectionMatchSetMixinProps

Properties for CfnSqlInjectionMatchSetPropsMixin.

Inheritance
object
CfnSqlInjectionMatchSetMixinProps
Implements
ICfnSqlInjectionMatchSetMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.WAF
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnSqlInjectionMatchSetMixinProps : ICfnSqlInjectionMatchSetMixinProps
Syntax (vb)
Public Class CfnSqlInjectionMatchSetMixinProps Implements ICfnSqlInjectionMatchSetMixinProps
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.CfnPropertyMixins.AWS.WAF;

             var cfnSqlInjectionMatchSetMixinProps = new CfnSqlInjectionMatchSetMixinProps {
                 Name = "name",
                 SqlInjectionMatchTuples = new [] { new SqlInjectionMatchTupleProperty {
                     FieldToMatch = new FieldToMatchProperty {
                         Data = "data",
                         Type = "type"
                     },
                     TextTransformation = "textTransformation"
                 } }
             };

Synopsis

Constructors

CfnSqlInjectionMatchSetMixinProps()

Properties for CfnSqlInjectionMatchSetPropsMixin.

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

CfnSqlInjectionMatchSetMixinProps()

Properties for CfnSqlInjectionMatchSetPropsMixin.

public CfnSqlInjectionMatchSetMixinProps()
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.CfnPropertyMixins.AWS.WAF;

             var cfnSqlInjectionMatchSetMixinProps = new CfnSqlInjectionMatchSetMixinProps {
                 Name = "name",
                 SqlInjectionMatchTuples = new [] { new SqlInjectionMatchTupleProperty {
                     FieldToMatch = new FieldToMatchProperty {
                         Data = "data",
                         Type = "type"
                     },
                     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

Type union: either IResolvable or (either IResolvable or CfnSqlInjectionMatchSetPropsMixin.ISqlInjectionMatchTupleProperty)[]

Implements

ICfnSqlInjectionMatchSetMixinProps
Back to top Generated by DocFX