interface CfnXssMatchSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WAF.CfnXssMatchSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswaf#CfnXssMatchSetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.waf.CfnXssMatchSetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_waf.CfnXssMatchSetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_waf » 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 { aws_waf as waf } from '@aws-cdk/cfn-property-mixins';
const cfnXssMatchSetMixinProps: waf.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