interface LogConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpacesWeb.CfnSessionLogger.LogConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspacesweb#CfnSessionLogger_LogConfigurationProperty |
Java | software.amazon.awscdk.services.workspacesweb.CfnSessionLogger.LogConfigurationProperty |
Python | aws_cdk.aws_workspacesweb.CfnSessionLogger.LogConfigurationProperty |
TypeScript | aws-cdk-lib » aws_workspacesweb » CfnSessionLogger » LogConfigurationProperty |
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 { aws_workspacesweb as workspacesweb } from 'aws-cdk-lib';
const logConfigurationProperty: workspacesweb.CfnSessionLogger.LogConfigurationProperty = {
s3: {
bucket: 'bucket',
folderStructure: 'folderStructure',
logFileFormat: 'logFileFormat',
// the properties below are optional
bucketOwner: 'bucketOwner',
keyPrefix: 'keyPrefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3? | IResolvable | S3 | The configuration for delivering the logs to S3. |
s3?
Type:
IResolvable | S3
(optional)
The configuration for delivering the logs to S3.

.NET
Go
Java
Python
TypeScript