CfnUserAccessLoggingSettingsMixinProps
- class aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnUserAccessLoggingSettingsMixinProps(*, kinesis_stream_arn=None, tags=None)
Bases:
objectProperties for CfnUserAccessLoggingSettingsPropsMixin.
- Parameters:
kinesis_stream_arn (
Optional[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:
- 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.mixins_preview.aws_workspacesweb import mixins as workspacesweb_mixins cfn_user_access_logging_settings_mixin_props = workspacesweb_mixins.CfnUserAccessLoggingSettingsMixinProps( kinesis_stream_arn="kinesisStreamArn", tags=[CfnTag( key="key", value="value" )] )
Attributes
- kinesis_stream_arn
The ARN of the Kinesis stream.
- tags
The tags to add to the user access logging settings resource.
A tag is a key-value pair.