interface WebContentFilteringPolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnBrowserSettingsPropsMixin.WebContentFilteringPolicyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnBrowserSettingsPropsMixin_WebContentFilteringPolicyProperty |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnBrowserSettingsPropsMixin.WebContentFilteringPolicyProperty |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnBrowserSettingsPropsMixin.WebContentFilteringPolicyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnBrowserSettingsPropsMixin » 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 { mixins as workspacesweb_mixins } from '@aws-cdk/mixins-preview/aws-workspacesweb';
const webContentFilteringPolicyProperty: workspacesweb_mixins.CfnBrowserSettingsPropsMixin.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