Class CfnSqlInjectionMatchSetMixinProps
Properties for CfnSqlInjectionMatchSetPropsMixin.
Implements
Inherited Members
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
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 |
| 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
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
Remarks
SqlInjectionMatchTuples
Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.
public object? SqlInjectionMatchTuples { get; set; }