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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBrowserSettings.WebContentFilteringPolicyPropertystatic final classAn implementation forCfnBrowserSettings.WebContentFilteringPolicyProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()URLs and domains that are always accessible to end users.Categories of websites that are blocked on the end user's browsers.URLs and domains that end users cannot access.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowedUrls
URLs and domains that are always accessible to end users.- See Also:
-
getBlockedCategories
Categories of websites that are blocked on the end user's browsers.- See Also:
-
getBlockedUrls
URLs and domains that end users cannot access.- See Also:
-
builder
-