Interface CfnDataSource.WebCrawlerSiteMapsConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.WebCrawlerSiteMapsConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.WebCrawlerSiteMapsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Provides the configuration information of the sitemap 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 the Amazon Kendra web crawler to index your own webpages, or webpages that you have authorization to index.
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.*; WebCrawlerSiteMapsConfigurationProperty webCrawlerSiteMapsConfigurationProperty = WebCrawlerSiteMapsConfigurationProperty.builder() .siteMaps(List.of("siteMaps")) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSource.WebCrawlerSiteMapsConfigurationProperty
static final class
An implementation forCfnDataSource.WebCrawlerSiteMapsConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The list of sitemap URLs of the websites you want to crawl.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSiteMaps
The list of sitemap URLs of the websites you want to crawl.The list can include a maximum of three sitemap URLs.
-
builder
-