Interface CfnTrail.AdvancedFieldSelectorProperty

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

@Stability(Stable) public static interface CfnTrail.AdvancedFieldSelectorProperty extends software.amazon.jsii.JsiiSerializable
A single selector statement in an advanced event selector.

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

See Also: