interface CfnXssMatchSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAF.Mixins.CfnXssMatchSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswaf/mixins#CfnXssMatchSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.waf.mixins.CfnXssMatchSetMixinProps |
Python | aws_cdk.mixins_preview.aws_waf.mixins.CfnXssMatchSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_waf » mixins » CfnXssMatchSetMixinProps |
Properties for CfnXssMatchSetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as waf_mixins } from '@aws-cdk/mixins-preview/aws-waf';
const cfnXssMatchSetMixinProps: waf_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