Skip to content

List User Settings

workspacesweb_list_user_settings R Documentation

Retrieves a list of user settings

Description

Retrieves a list of user settings.

Usage

workspacesweb_list_user_settings(maxResults, nextToken)

Arguments

maxResults

The maximum number of results to be included in the next page.

nextToken

The pagination token used to retrieve the next page of results for this operation.

Value

A list with the following syntax:

list(
  nextToken = "string",
  userSettings = list(
    list(
      cookieSynchronizationConfiguration = list(
        allowlist = list(
          list(
            domain = "string",
            name = "string",
            path = "string"
          )
        ),
        blocklist = list(
          list(
            domain = "string",
            name = "string",
            path = "string"
          )
        )
      ),
      copyAllowed = "Disabled"|"Enabled",
      deepLinkAllowed = "Disabled"|"Enabled",
      disconnectTimeoutInMinutes = 123,
      downloadAllowed = "Disabled"|"Enabled",
      idleDisconnectTimeoutInMinutes = 123,
      pasteAllowed = "Disabled"|"Enabled",
      printAllowed = "Disabled"|"Enabled",
      toolbarConfiguration = list(
        hiddenToolbarItems = list(
          "Windows"|"DualMonitor"|"FullScreen"|"Webcam"|"Microphone"
        ),
        maxDisplayResolution = "size4096X2160"|"size3840X2160"|"size3440X1440"|"size2560X1440"|"size1920X1080"|"size1280X720"|"size1024X768"|"size800X600",
        toolbarType = "Floating"|"Docked",
        visualMode = "Dark"|"Light"
      ),
      uploadAllowed = "Disabled"|"Enabled",
      userSettingsArn = "string"
    )
  )
)

Request syntax

svc$list_user_settings(
  maxResults = 123,
  nextToken = "string"
)