Interface CfnSessionLoggerProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSessionLoggerProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-08-12T14:44:25.916Z") @Stability(Stable) public interface CfnSessionLoggerProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnSessionLogger.

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;
 CfnSessionLoggerProps cfnSessionLoggerProps = CfnSessionLoggerProps.builder()
         .eventFilter(EventFilterProperty.builder()
                 .all(all)
                 .include(List.of("include"))
                 .build())
         .logConfiguration(LogConfigurationProperty.builder()
                 .s3(S3LogConfigurationProperty.builder()
                         .bucket("bucket")
                         .folderStructure("folderStructure")
                         .logFileFormat("logFileFormat")
                         // the properties below are optional
                         .bucketOwner("bucketOwner")
                         .keyPrefix("keyPrefix")
                         .build())
                 .build())
         // the properties below are optional
         .additionalEncryptionContext(Map.of(
                 "additionalEncryptionContextKey", "additionalEncryptionContext"))
         .customerManagedKey("customerManagedKey")
         .displayName("displayName")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: