interface JsonBodyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WAFv2.CfnLoggingConfiguration.JsonBodyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswafv2#CfnLoggingConfiguration_JsonBodyProperty |
Java | software.amazon.awscdk.services.wafv2.CfnLoggingConfiguration.JsonBodyProperty |
Python | aws_cdk.aws_wafv2.CfnLoggingConfiguration.JsonBodyProperty |
TypeScript | aws-cdk-lib » aws_wafv2 » CfnLoggingConfiguration » JsonBodyProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_wafv2 as wafv2 } from 'aws-cdk-lib';
declare const all: any;
const jsonBodyProperty: wafv2.CfnLoggingConfiguration.JsonBodyProperty = {
matchPattern: {
all: all,
includedPaths: ['includedPaths'],
},
matchScope: 'matchScope',
// the properties below are optional
invalidFallbackBehavior: 'invalidFallbackBehavior',
};
Properties
| Name | Type | Description |
|---|---|---|
| match | IResolvable | Match | |
| match | string | |
| invalid | string |
matchPattern
Type:
IResolvable | Match
matchScope
Type:
string
invalidFallbackBehavior?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript