io.github.cdklabs.generative_ai_cdk_constructs.bedrock.CrawlingScope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of generative-ai-cdk-constructs Show documentation
Show all versions of generative-ai-cdk-constructs Show documentation
AWS Generative AI CDK Constructs is a library for well-architected generative AI patterns.
The newest version!
package io.github.cdklabs.generative_ai_cdk_constructs.bedrock;
/**
* (experimental) The scope of the crawling.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-10-01T15:41:28.691Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Jsii(module = io.github.cdklabs.generative_ai_cdk_constructs.$Module.class, fqn = "@cdklabs/generative-ai-cdk-constructs.bedrock.CrawlingScope")
public enum CrawlingScope {
/**
* (experimental) Crawls only web pages that belong to the same host or primary domain.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
HOST_ONLY,
/**
* (experimental) Includes subdomains in addition to the host or primary domain, i.e. web pages that contain "aws.amazon.com" can also include sub domain "docs.aws.amazon.com".
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
SUBDOMAINS,
/**
* (experimental) Limit crawling to web pages that belong to the same host and with the same initial URL path.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
DEFAULT,
}