Interface CfnTelemetryRule.AdvancedFieldSelectorProperty

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

@Stability(Stable) public static interface CfnTelemetryRule.AdvancedFieldSelectorProperty extends software.amazon.jsii.JsiiSerializable
Defines criteria for selecting resources based on field values.

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.*;
 AdvancedFieldSelectorProperty advancedFieldSelectorProperty = AdvancedFieldSelectorProperty.builder()
         .endsWith(List.of("endsWith"))
         .equalTo(List.of("equalTo"))
         .field("field")
         .notEndsWith(List.of("notEndsWith"))
         .notEquals(List.of("notEquals"))
         .notStartsWith(List.of("notStartsWith"))
         .startsWith(List.of("startsWith"))
         .build();
 

See Also: