CfnUserAccessLoggingSettingsProps

class aws_cdk.aws_workspacesweb.CfnUserAccessLoggingSettingsProps(*, kinesis_stream_arn, tags=None)

Bases: object

Properties for defining a CfnUserAccessLoggingSettings.

Parameters:
  • kinesis_stream_arn (str) – The ARN of the Kinesis stream.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags to add to the user access logging settings resource. A tag is a key-value pair.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-useraccessloggingsettings.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_workspacesweb as workspacesweb

cfn_user_access_logging_settings_props = workspacesweb.CfnUserAccessLoggingSettingsProps(
    kinesis_stream_arn="kinesisStreamArn",

    # the properties below are optional
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

kinesis_stream_arn

The ARN of the Kinesis stream.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-useraccessloggingsettings.html#cfn-workspacesweb-useraccessloggingsettings-kinesisstreamarn

tags

The tags to add to the user access logging settings resource.

A tag is a key-value pair.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-useraccessloggingsettings.html#cfn-workspacesweb-useraccessloggingsettings-tags