interface CfnXssMatchSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WAFRegional.CfnXssMatchSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswafregional#CfnXssMatchSetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.wafregional.CfnXssMatchSetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_wafregional.CfnXssMatchSetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wafregional » CfnXssMatchSetMixinProps |
Properties for CfnXssMatchSetPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wafregional as wafregional } from '@aws-cdk/cfn-property-mixins';
const cfnXssMatchSetMixinProps: wafregional.CfnXssMatchSetMixinProps = {
name: 'name',
xssMatchTuples: [{
fieldToMatch: {
data: 'data',
type: 'type',
},
textTransformation: 'textTransformation',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name, if any, of the XssMatchSet . |
| xss | IResolvable | (IResolvable | Xss)[] | Specifies the parts of web requests that you want to inspect for cross-site scripting attacks. |
name?
Type:
string
(optional)
The name, if any, of the XssMatchSet .
xssMatchTuples?
Type:
IResolvable | (IResolvable | Xss)[]
(optional)
Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.

.NET
Go
Java
Python
TypeScript