Interface CfnKnowledgeBase.WebCrawlerConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnKnowledgeBase.WebCrawlerConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnKnowledgeBase

@Stability(Stable) public static interface CfnKnowledgeBase.WebCrawlerConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration details for the web data source.

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: