interface CfnByteMatchSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAF.Mixins.CfnByteMatchSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswaf/mixins#CfnByteMatchSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.waf.mixins.CfnByteMatchSetMixinProps |
Python | aws_cdk.mixins_preview.aws_waf.mixins.CfnByteMatchSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_waf » mixins » CfnByteMatchSetMixinProps |
Properties for CfnByteMatchSetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as waf_mixins } from '@aws-cdk/mixins-preview/aws-waf';
const cfnByteMatchSetMixinProps: waf_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 | The name 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)
The name of the ByteMatchSet .
You can't change Name after you create a ByteMatchSet .

.NET
Go
Java
Python
TypeScript