Class CfnXssMatchSetMixinProps
Properties for CfnXssMatchSetPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.WAFRegional.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnXssMatchSetMixinProps : ICfnXssMatchSetMixinProps
Syntax (vb)
Public Class CfnXssMatchSetMixinProps Implements ICfnXssMatchSetMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.WAFRegional.Mixins;
var cfnXssMatchSetMixinProps = new CfnXssMatchSetMixinProps {
Name = "name",
XssMatchTuples = new [] { new XssMatchTupleProperty {
FieldToMatch = new FieldToMatchProperty {
Data = "data",
Type = "type"
},
TextTransformation = "textTransformation"
} }
};
Synopsis
Constructors
| CfnXssMatchSetMixinProps() | Properties for CfnXssMatchSetPropsMixin. |
Properties
| Name | The name, if any, of the |
| XssMatchTuples | Specifies the parts of web requests that you want to inspect for cross-site scripting attacks. |
Constructors
CfnXssMatchSetMixinProps()
Properties for CfnXssMatchSetPropsMixin.
public CfnXssMatchSetMixinProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.WAFRegional.Mixins;
var cfnXssMatchSetMixinProps = new CfnXssMatchSetMixinProps {
Name = "name",
XssMatchTuples = new [] { new XssMatchTupleProperty {
FieldToMatch = new FieldToMatchProperty {
Data = "data",
Type = "type"
},
TextTransformation = "textTransformation"
} }
};
Properties
Name
The name, if any, of the XssMatchSet .
public string? Name { get; set; }
Property Value
Remarks
XssMatchTuples
Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.
public object? XssMatchTuples { get; set; }