Interface CfnSessionLogger.LogConfigurationProperty

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

@Stability(Stable) public static interface CfnSessionLogger.LogConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 LogConfigurationProperty logConfigurationProperty = LogConfigurationProperty.builder()
         .s3(S3LogConfigurationProperty.builder()
                 .bucket("bucket")
                 .folderStructure("folderStructure")
                 .logFileFormat("logFileFormat")
                 // the properties below are optional
                 .bucketOwner("bucketOwner")
                 .keyPrefix("keyPrefix")
                 .build())
         .build();
 

See Also: