Class CfnByteMatchSetProps
Properties for defining a CfnByteMatchSet
.
Implements
Inherited Members
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 |
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 |
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
Remarks
Name
The name of the ByteMatchSet
.
public string Name { get; set; }
Property Value
Remarks
You can't change Name
after you create a ByteMatchSet
.