Interface CfnKnowledgeBase.WebCrawlerConfigurationProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnKnowledgeBase.WebCrawlerConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnKnowledgeBase
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.wisdom.*;
 WebCrawlerConfigurationProperty webCrawlerConfigurationProperty = WebCrawlerConfigurationProperty.builder()
         .urlConfiguration(UrlConfigurationProperty.builder()
                 .seedUrls(List.of(SeedUrlProperty.builder()
                         .url("url")
                         .build()))
                 .build())
         // the properties below are optional
         .crawlerLimits(CrawlerLimitsProperty.builder()
                 .rateLimit(123)
                 .build())
         .exclusionFilters(List.of("exclusionFilters"))
         .inclusionFilters(List.of("inclusionFilters"))
         .scope("scope")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnKnowledgeBase.WebCrawlerConfigurationPropertystatic final classAn implementation forCfnKnowledgeBase.WebCrawlerConfigurationProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()default ObjectThe configuration of crawl limits for the web URLs.A list of one or more exclusion regular expression patterns to exclude certain URLs.A list of one or more inclusion regular expression patterns to include certain URLs.default StringgetScope()The scope of what is crawled for your URLs.The configuration of the URL/URLs for the web content that you want to crawl.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getUrlConfigurationThe configuration of the URL/URLs for the web content that you want to crawl.You should be authorized to crawl the URLs. Returns union: either IResolvableorCfnKnowledgeBase.UrlConfigurationProperty- See Also:
 
- 
getCrawlerLimitsThe configuration of crawl limits for the web URLs.Returns union: either IResolvableorCfnKnowledgeBase.CrawlerLimitsProperty- See Also:
 
- 
getExclusionFiltersA list of one or more exclusion regular expression patterns to exclude certain URLs.If you specify an inclusion and exclusion filter/pattern and both match a URL, the exclusion filter takes precedence and the web content of the URL isn’t crawled. - See Also:
 
- 
getInclusionFiltersA list of one or more inclusion regular expression patterns to include certain URLs.If you specify an inclusion and exclusion filter/pattern and both match a URL, the exclusion filter takes precedence and the web content of the URL isn’t crawled. - See Also:
 
- 
getScopeThe scope of what is crawled for your URLs.You can choose to crawl only web pages that belong to the same host or primary domain. For example, only web pages that contain the seed URL https://docs.aws.amazon.com/bedrock/latest/userguide/and no other domains. You can choose to include sub domains in addition to the host or primary domain. For example, web pages that containaws.amazon.com.rproxy.goskope.comcan also include sub domaindocs.aws.amazon.com.- See Also:
 
- 
builder
 
-