interface CfnByteMatchSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFRegional.Mixins.CfnByteMatchSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafregional/mixins#CfnByteMatchSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.wafregional.mixins.CfnByteMatchSetMixinProps |
Python | aws_cdk.mixins_preview.aws_wafregional.mixins.CfnByteMatchSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_wafregional » mixins » CfnByteMatchSetMixinProps |
Properties for CfnByteMatchSetPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as wafregional_mixins } from '@aws-cdk/mixins-preview/aws-wafregional';
const cfnByteMatchSetMixinProps: wafregional_mixins.CfnByteMatchSetMixinProps = {
byteMatchTuples: [{
fieldToMatch: {
data: 'data',
type: 'type',
},
positionalConstraint: 'positionalConstraint',
targetString: 'targetString',
targetStringBase64: 'targetStringBase64',
textTransformation: 'textTransformation',
}],
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| byte | IResolvable | (IResolvable | Byte)[] | 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? | string | A friendly name or description of the ByteMatchSet . |
byteMatchTuples?
Type:
IResolvable | (IResolvable | Byte)[]
(optional)
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?
Type:
string
(optional)
A friendly name or description of the ByteMatchSet .
You can't change Name after you create a ByteMatchSet .

.NET
Go
Java
Python
TypeScript