CfnSqlInjectionMatchSetMixinProps
- class aws_cdk.mixins_preview.aws_wafregional.mixins.CfnSqlInjectionMatchSetMixinProps(*, name=None, sql_injection_match_tuples=None)
Bases:
objectProperties for CfnSqlInjectionMatchSetPropsMixin.
- Parameters:
name (
Optional[str]) – The name, if any, of theSqlInjectionMatchSet.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:
- 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.
- sql_injection_match_tuples
Specifies the parts of web requests that you want to inspect for snippets of malicious SQL code.