interface CfnUserAccessLoggingSettingsProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpacesWeb.CfnUserAccessLoggingSettingsProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspacesweb#CfnUserAccessLoggingSettingsProps |
Java | software.amazon.awscdk.services.workspacesweb.CfnUserAccessLoggingSettingsProps |
Python | aws_cdk.aws_workspacesweb.CfnUserAccessLoggingSettingsProps |
TypeScript | aws-cdk-lib » aws_workspacesweb » CfnUserAccessLoggingSettingsProps |
Properties for defining a CfnUserAccessLoggingSettings.
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-lib';
const cfnUserAccessLoggingSettingsProps: workspacesweb.CfnUserAccessLoggingSettingsProps = {
kinesisStreamArn: 'kinesisStreamArn',
// the properties below are optional
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
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