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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSessionLogger.EventFilterPropertystatic final classAn implementation forCfnSessionLogger.EventFilterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAll
The filter that monitors all of the available events, including any new events emitted in the future.The
AllandIncludeproperties are not required, but one of them should be present.{}is a valid input.- See Also:
-
getInclude
The filter that monitors only the listed set of events.New events are not auto-monitored. The
AllandIncludeproperties are not required, but one of them should be present.- See Also:
-
builder
-