interface EventFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpacesWeb.CfnSessionLogger.EventFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspacesweb#CfnSessionLogger_EventFilterProperty |
Java | software.amazon.awscdk.services.workspacesweb.CfnSessionLogger.EventFilterProperty |
Python | aws_cdk.aws_workspacesweb.CfnSessionLogger.EventFilterProperty |
TypeScript | aws-cdk-lib » aws_workspacesweb » CfnSessionLogger » EventFilterProperty |
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 { aws_workspacesweb as workspacesweb } from 'aws-cdk-lib';
declare const all: any;
const eventFilterProperty: workspacesweb.CfnSessionLogger.EventFilterProperty = {
all: all,
include: ['include'],
};
Properties
| Name | Type | Description |
|---|---|---|
| all? | any | The filter that monitors all of the available events, including any new events emitted in the future. |
| include? | string[] | The filter that monitors only the listed set of events. |
all?
Type:
any
(optional)
The filter that monitors all of the available events, including any new events emitted in the future.
The All and Include properties are not required, but one of them should be present. {} is a valid input.
include?
Type:
string[]
(optional)
The filter that monitors only the listed set of events.
New events are not auto-monitored. The All and Include properties are not required, but one of them should be present.

.NET
Go
Java
Python
TypeScript