Show / Hide Table of Contents

Class CfnXssMatchSetMixinProps

Properties for CfnXssMatchSetPropsMixin.

Inheritance
object
CfnXssMatchSetMixinProps
Implements
ICfnXssMatchSetMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-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.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 XssMatchSet .

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-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.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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-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-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-xssmatchtuples

Type union: either IResolvable or (either IResolvable or CfnXssMatchSetPropsMixin.IXssMatchTupleProperty)[]

Implements

ICfnXssMatchSetMixinProps
Back to top Generated by DocFX