interface CfnUserAccessLoggingSettingsMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnUserAccessLoggingSettingsMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnUserAccessLoggingSettingsMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnUserAccessLoggingSettingsMixinProps |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnUserAccessLoggingSettingsMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnUserAccessLoggingSettingsMixinProps |
Properties for CfnUserAccessLoggingSettingsPropsMixin.
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 cfnUserAccessLoggingSettingsMixinProps: workspacesweb_mixins.CfnUserAccessLoggingSettingsMixinProps = {
kinesisStreamArn: 'kinesisStreamArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| kinesis | string | The ARN of the Kinesis stream. |
| tags? | Cfn[] | The tags to add to the user access logging settings resource. |
kinesisStreamArn?
Type:
string
(optional)
The ARN of the Kinesis stream.
tags?
Type:
Cfn[]
(optional)
The tags to add to the user access logging settings resource.
A tag is a key-value pair.

.NET
Go
Java
Python
TypeScript