CfnSqlInjectionMatchSetMixinProps

class aws_cdk.mixins_preview.aws_wafregional.mixins.CfnSqlInjectionMatchSetMixinProps(*, name=None, sql_injection_match_tuples=None)

Bases: object

Properties for CfnSqlInjectionMatchSetPropsMixin.

Parameters:
  • name (Optional[str]) – The name, if any, of the SqlInjectionMatchSet .

  • sql_injection_match_tuples (Union[IResolvable, Sequence[Union[IResolvable, SqlInjectionMatchTupleProperty, Dict[str, Any]]], None]) – Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_wafregional import mixins as wafregional_mixins

cfn_sql_injection_match_set_mixin_props = wafregional_mixins.CfnSqlInjectionMatchSetMixinProps(
    name="name",
    sql_injection_match_tuples=[wafregional_mixins.CfnSqlInjectionMatchSetPropsMixin.SqlInjectionMatchTupleProperty(
        field_to_match=wafregional_mixins.CfnSqlInjectionMatchSetPropsMixin.FieldToMatchProperty(
            data="data",
            type="type"
        ),
        text_transformation="textTransformation"
    )]
)

Attributes

name

The name, if any, of the SqlInjectionMatchSet .

See:

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

sql_injection_match_tuples

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

See:

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