Create Browser Settings
| workspacesweb_create_browser_settings | R Documentation |
Creates a browser settings resource that can be associated with a web portal¶
Description¶
Creates a browser settings resource that can be associated with a web portal. Once associated with a web portal, browser settings control how the browser will behave once a user starts a streaming session for the web portal.
Usage¶
workspacesweb_create_browser_settings(tags, customerManagedKey,
additionalEncryptionContext, browserPolicy, clientToken,
webContentFilteringPolicy)
Arguments¶
tags |
The tags to add to the browser settings resource. A tag is a key-value pair. |
customerManagedKey |
The custom managed key of the browser settings. |
additionalEncryptionContext |
Additional encryption context of the browser settings. |
browserPolicy |
A JSON string containing Chrome Enterprise policies that will be applied to all streaming sessions. |
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. |
webContentFilteringPolicy |
The policy that specifies which URLs end users are allowed to access or which URLs or domain categories they are restricted from accessing for enhanced security. |
Value¶
A list with the following syntax:
list(
browserSettingsArn = "string"
)
Request syntax¶
svc$create_browser_settings(
tags = list(
list(
Key = "string",
Value = "string"
)
),
customerManagedKey = "string",
additionalEncryptionContext = list(
"string"
),
browserPolicy = "string",
clientToken = "string",
webContentFilteringPolicy = list(
blockedCategories = list(
"Cults"|"Gambling"|"Nudity"|"Pornography"|"SexEducation"|"Tasteless"|"Violence"|"DownloadSites"|"ImageSharing"|"PeerToPeer"|"StreamingMediaAndDownloads"|"GenerativeAI"|"CriminalActivity"|"Hacking"|"HateAndIntolerance"|"IllegalDrug"|"IllegalSoftware"|"SchoolCheating"|"SelfHarm"|"Weapons"|"Chat"|"Games"|"InstantMessaging"|"ProfessionalNetwork"|"SocialNetworking"|"WebBasedEmail"|"ParkedDomains"
),
allowedUrls = list(
"string"
),
blockedUrls = list(
"string"
)
)
)