Interface CfnBrowserSettings.WebContentFilteringPolicyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBrowserSettings.WebContentFilteringPolicyProperty.Jsii$Proxy
Enclosing class:
CfnBrowserSettings

@Stability(Stable) public static interface CfnBrowserSettings.WebContentFilteringPolicyProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.workspacesweb.*;
 WebContentFilteringPolicyProperty webContentFilteringPolicyProperty = WebContentFilteringPolicyProperty.builder()
         .allowedUrls(List.of("allowedUrls"))
         .blockedCategories(List.of("blockedCategories"))
         .blockedUrls(List.of("blockedUrls"))
         .build();
 

See Also: