Show / Hide Table of Contents

Class CfnXssMatchSetProps

Properties for defining a CfnXssMatchSet.

Inheritance
object
CfnXssMatchSetProps
Implements
ICfnXssMatchSetProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.WAF
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnXssMatchSetProps : ICfnXssMatchSetProps
Syntax (vb)
Public Class CfnXssMatchSetProps Implements ICfnXssMatchSetProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html

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.AWS.WAF;

             var cfnXssMatchSetProps = new CfnXssMatchSetProps {
                 Name = "name",
                 XssMatchTuples = new [] { new XssMatchTupleProperty {
                     FieldToMatch = new FieldToMatchProperty {
                         Type = "type",

                         // the properties below are optional
                         Data = "data"
                     },
                     TextTransformation = "textTransformation"
                 } }
             };

Synopsis

Constructors

CfnXssMatchSetProps()

Properties for defining a CfnXssMatchSet.

Properties

Name

The name, if any, of the XssMatchSet .

XssMatchTuples

Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.

Constructors

CfnXssMatchSetProps()

Properties for defining a CfnXssMatchSet.

public CfnXssMatchSetProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html

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.AWS.WAF;

             var cfnXssMatchSetProps = new CfnXssMatchSetProps {
                 Name = "name",
                 XssMatchTuples = new [] { new XssMatchTupleProperty {
                     FieldToMatch = new FieldToMatchProperty {
                         Type = "type",

                         // the properties below are optional
                         Data = "data"
                     },
                     TextTransformation = "textTransformation"
                 } }
             };

Properties

Name

The name, if any, of the XssMatchSet .

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name

XssMatchTuples

Specifies the parts of web requests that you want to inspect for cross-site scripting attacks.

public object XssMatchTuples { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-xssmatchtuples

Implements

ICfnXssMatchSetProps
Back to top Generated by DocFX