Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SeedUrlConfiguration

import type { SeedUrlConfiguration } from "https://aws-api.deno.dev/v0.3/services/kendra.ts?docs=full";

Provides the configuration information of the seed or starting point URLs to crawl.

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 webpages, or webpages that you have authorization to index.

interface SeedUrlConfiguration {
SeedUrls: string[];
WebCrawlerMode?: WebCrawlerMode | null;
}

§Properties

§
SeedUrls: string[]
[src]

The list of seed or starting point URLs of the websites you want to crawl.

The list can include a maximum of 100 seed URLs.

§
WebCrawlerMode?: WebCrawlerMode | null
[src]

You can choose one of the following modes:

  • HOST_ONLY – crawl only the website host names. For example, if the seed URL is "abc.example.com", then only URLs with host name "abc.example.com" are crawled.
  • SUBDOMAINS – crawl the website host names with subdomains. For example, if the seed URL is "abc.example.com", then "a.abc.example.com" and "b.abc.example.com" are also crawled.
  • EVERYTHING – crawl the website host names with subdomains and other domains that the webpages link to.

The default mode is set to HOST_ONLY.