Skip to content

Create User Access Logging Settings

workspacesweb_create_user_access_logging_settings R Documentation

Creates a user access logging settings resource that can be associated with a web portal

Description

Creates a user access logging settings resource that can be associated with a web portal.

Usage

workspacesweb_create_user_access_logging_settings(clientToken,
  kinesisStreamArn, tags)

Arguments

clientToken

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token returns the result from the original successful request.

If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK.

kinesisStreamArn

[required] The ARN of the Kinesis stream.

tags

The tags to add to the user settings resource. A tag is a key-value pair.

Value

A list with the following syntax:

list(
  userAccessLoggingSettingsArn = "string"
)

Request syntax

svc$create_user_access_logging_settings(
  clientToken = "string",
  kinesisStreamArn = "string",
  tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)