Class: Aws::Kendra::Types::Urls
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::Urls
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Provides the configuration information of the URLs to crawl.
You can only crawl websites that use the secure communication protocol, Hypertext Transfer Protocol Secure (HTTPS). If you receive an error when crawling a website, it could be that the website is blocked from crawling.
*When selecting websites to index, you must adhere to the [Amazon Acceptable Use Policy] and all other Amazon terms. Remember that you must only use Amazon Kendra Web Crawler to index your own web pages, or web pages that you have authorization to index.*
[1]: aws.amazon.com/aup/
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#seed_url_configuration ⇒ Types::SeedUrlConfiguration
Configuration of the seed or starting point URLs of the websites you want to crawl.
-
#site_maps_configuration ⇒ Types::SiteMapsConfiguration
Configuration of the sitemap URLs of the websites you want to crawl.
Instance Attribute Details
#seed_url_configuration ⇒ Types::SeedUrlConfiguration
Configuration of the seed or starting point URLs of the websites you want to crawl.
You can choose to crawl only the website host names, or the website host names with subdomains, or the website host names with subdomains and other domains that the web pages link to.
You can list up to 100 seed URLs.
10966 10967 10968 10969 10970 10971 |
# File 'lib/aws-sdk-kendra/types.rb', line 10966 class Urls < Struct.new( :seed_url_configuration, :site_maps_configuration) SENSITIVE = [] include Aws::Structure end |
#site_maps_configuration ⇒ Types::SiteMapsConfiguration
Configuration of the sitemap URLs of the websites you want to crawl.
Only URLs belonging to the same website host names are crawled. You can list up to three sitemap URLs.
10966 10967 10968 10969 10970 10971 |
# File 'lib/aws-sdk-kendra/types.rb', line 10966 class Urls < Struct.new( :seed_url_configuration, :site_maps_configuration) SENSITIVE = [] include Aws::Structure end |