Class: Aws::WorkSpacesWeb::Types::WebContentFilteringPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkSpacesWeb::Types::WebContentFilteringPolicy
- Defined in:
- gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[:allowed_urls, :blocked_urls]
Instance Attribute Summary collapse
-
#allowed_urls ⇒ Array<String>
URLs and domains that are always accessible to end users.
-
#blocked_categories ⇒ Array<String>
Categories of websites that are blocked on the end user’s browsers.
-
#blocked_urls ⇒ Array<String>
URLs and domains that end users cannot access.
Instance Attribute Details
#allowed_urls ⇒ Array<String>
URLs and domains that are always accessible to end users.
4567 4568 4569 4570 4571 4572 4573 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 4567 class WebContentFilteringPolicy < Struct.new( :blocked_categories, :allowed_urls, :blocked_urls) SENSITIVE = [:allowed_urls, :blocked_urls] include Aws::Structure end |
#blocked_categories ⇒ Array<String>
Categories of websites that are blocked on the end user’s browsers.
4567 4568 4569 4570 4571 4572 4573 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 4567 class WebContentFilteringPolicy < Struct.new( :blocked_categories, :allowed_urls, :blocked_urls) SENSITIVE = [:allowed_urls, :blocked_urls] include Aws::Structure end |
#blocked_urls ⇒ Array<String>
URLs and domains that end users cannot access.
4567 4568 4569 4570 4571 4572 4573 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 4567 class WebContentFilteringPolicy < Struct.new( :blocked_categories, :allowed_urls, :blocked_urls) SENSITIVE = [:allowed_urls, :blocked_urls] include Aws::Structure end |