Interface CfnDataSource.WebCrawlerConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSource.WebCrawlerConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Provides the configuration information required for Amazon Kendra Web Crawler.

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.kendra.*;
 WebCrawlerConfigurationProperty webCrawlerConfigurationProperty = WebCrawlerConfigurationProperty.builder()
         .urls(WebCrawlerUrlsProperty.builder()
                 .seedUrlConfiguration(WebCrawlerSeedUrlConfigurationProperty.builder()
                         .seedUrls(List.of("seedUrls"))
                         // the properties below are optional
                         .webCrawlerMode("webCrawlerMode")
                         .build())
                 .siteMapsConfiguration(WebCrawlerSiteMapsConfigurationProperty.builder()
                         .siteMaps(List.of("siteMaps"))
                         .build())
                 .build())
         // the properties below are optional
         .authenticationConfiguration(WebCrawlerAuthenticationConfigurationProperty.builder()
                 .basicAuthentication(List.of(WebCrawlerBasicAuthenticationProperty.builder()
                         .credentials("credentials")
                         .host("host")
                         .port(123)
                         .build()))
                 .build())
         .crawlDepth(123)
         .maxContentSizePerPageInMegaBytes(123)
         .maxLinksPerPage(123)
         .maxUrlsPerMinuteCrawlRate(123)
         .proxyConfiguration(ProxyConfigurationProperty.builder()
                 .host("host")
                 .port(123)
                 // the properties below are optional
                 .credentials("credentials")
                 .build())
         .urlExclusionPatterns(List.of("urlExclusionPatterns"))
         .urlInclusionPatterns(List.of("urlInclusionPatterns"))
         .build();
 

See Also: