interface CfnBrowserSettingsProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpacesWeb.CfnBrowserSettingsProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspacesweb#CfnBrowserSettingsProps |
Java | software.amazon.awscdk.services.workspacesweb.CfnBrowserSettingsProps |
Python | aws_cdk.aws_workspacesweb.CfnBrowserSettingsProps |
TypeScript | aws-cdk-lib » aws_workspacesweb » CfnBrowserSettingsProps |
Properties for defining a CfnBrowserSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_workspacesweb as workspacesweb } from 'aws-cdk-lib';
const cfnBrowserSettingsProps: workspacesweb.CfnBrowserSettingsProps = {
additionalEncryptionContext: {
additionalEncryptionContextKey: 'additionalEncryptionContext',
},
browserPolicy: 'browserPolicy',
customerManagedKey: 'customerManagedKey',
tags: [{
key: 'key',
value: 'value',
}],
webContentFilteringPolicy: {
allowedUrls: ['allowedUrls'],
blockedCategories: ['blockedCategories'],
blockedUrls: ['blockedUrls'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | { [string]: string } | IResolvable | Additional encryption context of the browser settings. |
| browser | string | A JSON string containing Chrome Enterprise policies that will be applied to all streaming sessions. |
| customer | string | The custom managed key of the browser settings. |
| tags? | Cfn[] | The tags to add to the browser settings resource. |
| web | IResolvable | Web | 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. |
additionalEncryptionContext?
Type:
{ [string]: string } | IResolvable
(optional)
Additional encryption context of the browser settings.
browserPolicy?
Type:
string
(optional)
A JSON string containing Chrome Enterprise policies that will be applied to all streaming sessions.
customerManagedKey?
Type:
string
(optional)
The custom managed key of the browser settings.
Pattern : ^arn:[\w+=\/,.@-]+:kms:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:key\/[a-zA-Z0-9-]+$
tags?
Type:
Cfn[]
(optional)
The tags to add to the browser settings resource.
A tag is a key-value pair.
webContentFilteringPolicy?
Type:
IResolvable | Web
(optional)
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.

.NET
Go
Java
Python
TypeScript