interface LabelNameConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WAFv2.Mixins.CfnLoggingConfigurationPropsMixin.LabelNameConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswafv2/mixins#CfnLoggingConfigurationPropsMixin_LabelNameConditionProperty |
Java | software.amazon.awscdk.mixins.preview.services.wafv2.mixins.CfnLoggingConfigurationPropsMixin.LabelNameConditionProperty |
Python | aws_cdk.mixins_preview.aws_wafv2.mixins.CfnLoggingConfigurationPropsMixin.LabelNameConditionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wafv2 » mixins » CfnLoggingConfigurationPropsMixin » LabelNameConditionProperty |
A single label name condition for a condition in a logging filter.
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 labelNameConditionProperty: wafv2_mixins.CfnLoggingConfigurationPropsMixin.LabelNameConditionProperty = {
labelName: 'labelName',
};
Properties
| Name | Type | Description |
|---|---|---|
| label | string | The label name that a log record must contain in order to meet the condition. |
labelName?
Type:
string
(optional)
The label name that a log record must contain in order to meet the condition.
This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.

.NET
Go
Java
Python
TypeScript