interface WebContentFilteringPolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpacesWeb.CfnBrowserSettings.WebContentFilteringPolicyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspacesweb#CfnBrowserSettings_WebContentFilteringPolicyProperty |
Java | software.amazon.awscdk.services.workspacesweb.CfnBrowserSettings.WebContentFilteringPolicyProperty |
Python | aws_cdk.aws_workspacesweb.CfnBrowserSettings.WebContentFilteringPolicyProperty |
TypeScript | aws-cdk-lib » aws_workspacesweb » CfnBrowserSettings » WebContentFilteringPolicyProperty |
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.
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 webContentFilteringPolicyProperty: workspacesweb.CfnBrowserSettings.WebContentFilteringPolicyProperty = {
allowedUrls: ['allowedUrls'],
blockedCategories: ['blockedCategories'],
blockedUrls: ['blockedUrls'],
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | URLs and domains that are always accessible to end users. |
| blocked | string[] | Categories of websites that are blocked on the end user's browsers. |
| blocked | string[] | URLs and domains that end users cannot access. |
allowedUrls?
Type:
string[]
(optional)
URLs and domains that are always accessible to end users.
blockedCategories?
Type:
string[]
(optional)
Categories of websites that are blocked on the end user's browsers.
blockedUrls?
Type:
string[]
(optional)
URLs and domains that end users cannot access.

.NET
Go
Java
Python
TypeScript