interface DataProtectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFv2.Mixins.CfnWebACLPropsMixin.DataProtectProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafv2/mixins#CfnWebACLPropsMixin_DataProtectProperty |
Java | software.amazon.awscdk.mixins.preview.services.wafv2.mixins.CfnWebACLPropsMixin.DataProtectProperty |
Python | aws_cdk.mixins_preview.aws_wafv2.mixins.CfnWebACLPropsMixin.DataProtectProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wafv2 » mixins » CfnWebACLPropsMixin » DataProtectProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as wafv2_mixins } from '@aws-cdk/mixins-preview/aws-wafv2';
const dataProtectProperty: wafv2_mixins.CfnWebACLPropsMixin.DataProtectProperty = {
action: 'action',
excludeRateBasedDetails: false,
excludeRuleMatchDetails: false,
field: {
fieldKeys: ['fieldKeys'],
fieldType: 'fieldType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| action? | string | |
| exclude | boolean | IResolvable | |
| exclude | boolean | IResolvable | |
| field? | IResolvable | Field | Field in log to protect. |
action?
Type:
string
(optional)
excludeRateBasedDetails?
Type:
boolean | IResolvable
(optional)
excludeRuleMatchDetails?
Type:
boolean | IResolvable
(optional)
field?
Type:
IResolvable | Field
(optional)
Field in log to protect.

.NET
Go
Java
Python
TypeScript