Show / Hide Table of Contents

Class CfnByteMatchSetProps

Properties for defining a CfnByteMatchSet.

Inheritance
object
CfnByteMatchSetProps
Implements
ICfnByteMatchSetProps
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 CfnByteMatchSetProps : ICfnByteMatchSetProps
Syntax (vb)
Public Class CfnByteMatchSetProps Implements ICfnByteMatchSetProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.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 cfnByteMatchSetProps = new CfnByteMatchSetProps {
                 Name = "name",

                 // the properties below are optional
                 ByteMatchTuples = new [] { new ByteMatchTupleProperty {
                     FieldToMatch = new FieldToMatchProperty {
                         Type = "type",

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

                     // the properties below are optional
                     TargetString = "targetString",
                     TargetStringBase64 = "targetStringBase64"
                 } }
             };

Synopsis

Constructors

CfnByteMatchSetProps()

Properties for defining a CfnByteMatchSet.

Properties

ByteMatchTuples

Specifies the bytes (typically a string that corresponds with ASCII characters) that you want AWS WAF to search for in web requests, the location in requests that you want AWS WAF to search, and other settings.

Name

The name of the ByteMatchSet .

Constructors

CfnByteMatchSetProps()

Properties for defining a CfnByteMatchSet.

public CfnByteMatchSetProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.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 cfnByteMatchSetProps = new CfnByteMatchSetProps {
                 Name = "name",

                 // the properties below are optional
                 ByteMatchTuples = new [] { new ByteMatchTupleProperty {
                     FieldToMatch = new FieldToMatchProperty {
                         Type = "type",

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

                     // the properties below are optional
                     TargetString = "targetString",
                     TargetStringBase64 = "targetStringBase64"
                 } }
             };

Properties

ByteMatchTuples

Specifies the bytes (typically a string that corresponds with ASCII characters) that you want AWS WAF to search for in web requests, the location in requests that you want AWS WAF to search, and other settings.

public object? ByteMatchTuples { get; set; }
Property Value

object

Remarks

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

Name

The name of the ByteMatchSet .

public string Name { get; set; }
Property Value

string

Remarks

You can't change Name after you create a ByteMatchSet .

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

Implements

ICfnByteMatchSetProps
Back to top Generated by DocFX