Show / Hide Table of Contents

Interface ICfnByteMatchSetProps

Properties for defining a CfnByteMatchSet.

Namespace: Amazon.CDK.AWS.WAF
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnByteMatchSetProps
Syntax (vb)
Public Interface 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

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 .

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.

object? ByteMatchTuples { get; }
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 .

string Name { get; }
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

Back to top Generated by DocFX