BrowserSettings

The 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.

End User ComputingSecure BrowserVirtual DesktopZero Trust

Properties

Name Type Description
associatedPortalArns object
browserPolicy object
browserSettingsArn object
View JSON Schema on GitHub

JSON Schema

workspaces-web-browser-settings-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "browserSettingsArn"
  ],
  "properties": {
    "associatedPortalArns": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ArnList"
        },
        {
          "description": "A list of web portal ARNs that this browser settings is associated with."
        }
      ]
    },
    "browserPolicy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BrowserPolicy"
        },
        {
          "description": "A JSON string containing Chrome Enterprise policies that will be applied to all streaming sessions."
        }
      ]
    },
    "browserSettingsArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ARN"
        },
        {
          "description": "The ARN of the browser settings."
        }
      ]
    }
  },
  "description": "The 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. ",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BrowserSettings",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workspaces-web/refs/heads/main/json-schema/workspaces-web-browser-settings-schema.json"
}