List User Settings
| workspacesweb_list_user_settings | R Documentation |
Retrieves a list of user settings¶
Description¶
Retrieves a list of user settings.
Usage¶
Arguments¶
maxResultsThe maximum number of results to be included in the next page.
nextTokenThe 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",
uploadAllowed = "Disabled"|"Enabled",
userSettingsArn = "string"
)
)
)