Interface CfnTelemetryRule.AdvancedEventSelectorProperty

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

@Stability(Stable) public static interface CfnTelemetryRule.AdvancedEventSelectorProperty extends software.amazon.jsii.JsiiSerializable
Advanced event selectors let you create fine-grained selectors for management, data, and network activity events.

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.*;
 AdvancedEventSelectorProperty advancedEventSelectorProperty = AdvancedEventSelectorProperty.builder()
         .fieldSelectors(List.of(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()))
         // the properties below are optional
         .name("name")
         .build();
 

See Also: