interface LabelNameConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnTelemetryRule.LabelNameConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnTelemetryRule_LabelNameConditionProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnTelemetryRule.LabelNameConditionProperty |
Python | aws_cdk.aws_observabilityadmin.CfnTelemetryRule.LabelNameConditionProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnTelemetryRule » LabelNameConditionProperty |
Condition that matches based on WAF rule labels, with label names limited to 1024 characters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_observabilityadmin as observabilityadmin } from 'aws-cdk-lib';
const labelNameConditionProperty: observabilityadmin.CfnTelemetryRule.LabelNameConditionProperty = {
labelName: 'labelName',
};
Properties
| Name | Type | Description |
|---|---|---|
| label | string | The label name to match, supporting alphanumeric characters, underscores, hyphens, and colons. |
labelName?
Type:
string
(optional)
The label name to match, supporting alphanumeric characters, underscores, hyphens, and colons.

.NET
Go
Java
Python
TypeScript