Interface CfnSessionLogger.S3LogConfigurationProperty

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

@Stability(Stable) public static interface CfnSessionLogger.S3LogConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The S3 log configuration.

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.*;
 S3LogConfigurationProperty s3LogConfigurationProperty = S3LogConfigurationProperty.builder()
         .bucket("bucket")
         .folderStructure("folderStructure")
         .logFileFormat("logFileFormat")
         // the properties below are optional
         .bucketOwner("bucketOwner")
         .keyPrefix("keyPrefix")
         .build();
 

See Also: