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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSessionLogger.S3LogConfigurationProperty
static final class
An implementation forCfnSessionLogger.S3LogConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The S3 bucket name where logs are delivered.default String
The expected bucket owner of the target S3 bucket.The folder structure that defines the organizational structure for log files in S3.default String
The S3 path prefix that determines where log files are stored.The format of the LogFile that is written to S3.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The S3 bucket name where logs are delivered.- See Also:
-
getFolderStructure
The folder structure that defines the organizational structure for log files in S3.- See Also:
-
getLogFileFormat
The format of the LogFile that is written to S3.- See Also:
-
getBucketOwner
The expected bucket owner of the target S3 bucket.The caller must have permissions to write to the target bucket.
- See Also:
-
getKeyPrefix
The S3 path prefix that determines where log files are stored.- See Also:
-
builder
-