interface S3LogConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnSessionLoggerPropsMixin.S3LogConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnSessionLoggerPropsMixin_S3LogConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnSessionLoggerPropsMixin.S3LogConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnSessionLoggerPropsMixin.S3LogConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnSessionLoggerPropsMixin » S3LogConfigurationProperty |
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 { mixins as workspacesweb_mixins } from '@aws-cdk/mixins-preview/aws-workspacesweb';
const s3LogConfigurationProperty: workspacesweb_mixins.CfnSessionLoggerPropsMixin.S3LogConfigurationProperty = {
bucket: 'bucket',
bucketOwner: 'bucketOwner',
folderStructure: 'folderStructure',
keyPrefix: 'keyPrefix',
logFileFormat: 'logFileFormat',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The S3 bucket name where logs are delivered. |
| bucket | string | The expected bucket owner of the target S3 bucket. |
| folder | string | The folder structure that defines the organizational structure for log files in S3. |
| key | string | The S3 path prefix that determines where log files are stored. |
| log | string | The format of the LogFile that is written to S3. |
bucket?
Type:
string
(optional)
The S3 bucket name where logs are delivered.
bucketOwner?
Type:
string
(optional)
The expected bucket owner of the target S3 bucket.
The caller must have permissions to write to the target bucket.
folderStructure?
Type:
string
(optional)
The folder structure that defines the organizational structure for log files in S3.
keyPrefix?
Type:
string
(optional)
The S3 path prefix that determines where log files are stored.
logFileFormat?
Type:
string
(optional)
The format of the LogFile that is written to S3.

.NET
Go
Java
Python
TypeScript