interface LogConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnSessionLoggerPropsMixin.LogConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnSessionLoggerPropsMixin_LogConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnSessionLoggerPropsMixin.LogConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnSessionLoggerPropsMixin.LogConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnSessionLoggerPropsMixin » 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 { mixins as workspacesweb_mixins } from '@aws-cdk/mixins-preview/aws-workspacesweb';
const logConfigurationProperty: workspacesweb_mixins.CfnSessionLoggerPropsMixin.LogConfigurationProperty = {
s3: {
bucket: 'bucket',
bucketOwner: 'bucketOwner',
folderStructure: 'folderStructure',
keyPrefix: 'keyPrefix',
logFileFormat: 'logFileFormat',
},
};
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