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
The configuration of the log.
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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSessionLogger.LogConfigurationPropertystatic final classAn implementation forCfnSessionLogger.LogConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3
The configuration for delivering the logs to S3.Returns union: either
IResolvableorCfnSessionLogger.S3LogConfigurationProperty- See Also:
-
builder
-