interface LogConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WorkSpacesWeb.CfnSessionLoggerPropsMixin.LogConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsworkspacesweb#CfnSessionLoggerPropsMixin_LogConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.workspacesweb.CfnSessionLoggerPropsMixin.LogConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_workspacesweb.CfnSessionLoggerPropsMixin.LogConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_workspacesweb » 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 { aws_workspacesweb as workspacesweb } from '@aws-cdk/cfn-property-mixins';
const logConfigurationProperty: workspacesweb.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