Show / Hide Table of Contents

Interface ICfnSqlInjectionMatchSetMixinProps

Properties for CfnSqlInjectionMatchSetPropsMixin.

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

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

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

Back to top Generated by DocFX