Interface CfnSessionLogger.EventFilterProperty

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

@Stability(Stable) public static interface CfnSessionLogger.EventFilterProperty extends software.amazon.jsii.JsiiSerializable
The filter that specifies the events to monitor.

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.workspacesweb.*;
 Object all;
 EventFilterProperty eventFilterProperty = EventFilterProperty.builder()
         .all(all)
         .include(List.of("include"))
         .build();
 

See Also: