interface CfnSessionLoggerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnSessionLoggerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnSessionLoggerMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnSessionLoggerMixinProps |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnSessionLoggerMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnSessionLoggerMixinProps |
Properties for CfnSessionLoggerPropsMixin.
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';
declare const all: any;
const cfnSessionLoggerMixinProps: workspacesweb_mixins.CfnSessionLoggerMixinProps = {
additionalEncryptionContext: {
additionalEncryptionContextKey: 'additionalEncryptionContext',
},
customerManagedKey: 'customerManagedKey',
displayName: 'displayName',
eventFilter: {
all: all,
include: ['include'],
},
logConfiguration: {
s3: {
bucket: 'bucket',
bucketOwner: 'bucketOwner',
folderStructure: 'folderStructure',
keyPrefix: 'keyPrefix',
logFileFormat: 'logFileFormat',
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | { [string]: string } | IResolvable | The additional encryption context of the session logger. |
| customer | string | The custom managed key of the session logger. |
| display | string | The human-readable display name. |
| event | IResolvable | Event | The filter that specifies which events to monitor. |
| log | IResolvable | Log | The configuration that specifies where logs are fowarded. |
| tags? | Cfn[] | The tags of the session logger. |
additionalEncryptionContext?
Type:
{ [string]: string } | IResolvable
(optional)
The additional encryption context of the session logger.
customerManagedKey?
Type:
string
(optional)
The custom managed key of the session logger.
displayName?
Type:
string
(optional)
The human-readable display name.
eventFilter?
Type:
IResolvable | Event
(optional)
The filter that specifies which events to monitor.
logConfiguration?
Type:
IResolvable | Log
(optional)
The configuration that specifies where logs are fowarded.
tags?
Type:
Cfn[]
(optional)
The tags of the session logger.

.NET
Go
Java
Python
TypeScript