Class: Aws::WorkSpacesWeb::Types::WebContentFilteringPolicy

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#allowed_urlsArray<String>

URLs and domains that are always accessible to end users.

Returns:

  • (Array<String>)


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_categoriesArray<String>

Categories of websites that are blocked on the end user’s browsers.

Returns:

  • (Array<String>)


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_urlsArray<String>

URLs and domains that end users cannot access.

Returns:

  • (Array<String>)


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