interface CfnXssMatchSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFRegional.Mixins.CfnXssMatchSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafregional/mixins#CfnXssMatchSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.wafregional.mixins.CfnXssMatchSetMixinProps |
Python | aws_cdk.mixins_preview.aws_wafregional.mixins.CfnXssMatchSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_wafregional » mixins » 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 { mixins as wafregional_mixins } from '@aws-cdk/mixins-preview/aws-wafregional';
const cfnXssMatchSetMixinProps: wafregional_mixins.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