Interface CfnOrganizationTelemetryRule.ConditionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnOrganizationTelemetryRule.ConditionProperty.Jsii$Proxy
Enclosing class:
CfnOrganizationTelemetryRule

@Stability(Stable) public static interface CfnOrganizationTelemetryRule.ConditionProperty extends software.amazon.jsii.JsiiSerializable
A single condition that can match based on WAF rule action or label name.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.observabilityadmin.*;
 ConditionProperty conditionProperty = ConditionProperty.builder()
         .actionCondition(ActionConditionProperty.builder()
                 .action("action")
                 .build())
         .labelNameCondition(LabelNameConditionProperty.builder()
                 .labelName("labelName")
                 .build())
         .build();
 

See Also: