interface JsonMatchPatternProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFv2.CfnWebACL.JsonMatchPatternProperty |
Java | software.amazon.awscdk.services.wafv2.CfnWebACL.JsonMatchPatternProperty |
Python | aws_cdk.aws_wafv2.CfnWebACL.JsonMatchPatternProperty |
TypeScript | @aws-cdk/aws-wafv2 » CfnWebACL » JsonMatchPatternProperty |
The patterns to look for in the JSON body.
AWS WAF inspects the results of these pattern matches against the rule inspection criteria. This is used with the FieldToMatch option JsonBody .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as wafv2 from '@aws-cdk/aws-wafv2';
declare const all: any;
const jsonMatchPatternProperty: wafv2.CfnWebACL.JsonMatchPatternProperty = {
all: all,
includedPaths: ['includedPaths'],
};
Properties
| Name | Type | Description |
|---|---|---|
| all? | any | Match all of the elements. See also MatchScope in the JsonBody FieldToMatch specification. |
| included | string[] | Match only the specified include paths. See also MatchScope in the JsonBody FieldToMatch specification. |
all?
Type:
any
(optional)
Match all of the elements. See also MatchScope in the JsonBody FieldToMatch specification.
You must specify either this setting or the IncludedPaths setting, but not both.
includedPaths?
Type:
string[]
(optional)
Match only the specified include paths. See also MatchScope in the JsonBody FieldToMatch specification.
Provide the include paths using JSON Pointer syntax. For example, "IncludedPaths": ["/dogs/0/name", "/dogs/1/name"] . For information about this syntax, see the Internet Engineering Task Force (IETF) documentation JavaScript Object Notation (JSON) Pointer .
You must specify either this setting or the All setting, but not both.
Don't use this option to include all paths. Instead, use the
Allsetting.

.NET
Java
Python
TypeScript