Interface CfnKnowledgeBasePropsMixin.ManagedSourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnKnowledgeBasePropsMixin.ManagedSourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnKnowledgeBasePropsMixin
@Stability(Stable)
public static interface CfnKnowledgeBasePropsMixin.ManagedSourceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Source configuration for managed resources.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.wisdom.*;
ManagedSourceConfigurationProperty managedSourceConfigurationProperty = ManagedSourceConfigurationProperty.builder()
.webCrawlerConfiguration(WebCrawlerConfigurationProperty.builder()
.crawlerLimits(CrawlerLimitsProperty.builder()
.rateLimit(123)
.build())
.exclusionFilters(List.of("exclusionFilters"))
.inclusionFilters(List.of("inclusionFilters"))
.scope("scope")
.urlConfiguration(UrlConfigurationProperty.builder()
.seedUrls(List.of(SeedUrlProperty.builder()
.url("url")
.build()))
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnKnowledgeBasePropsMixin.ManagedSourceConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getWebCrawlerConfiguration
Configuration data for web crawler data source.Returns union: either
IResolvableorCfnKnowledgeBasePropsMixin.WebCrawlerConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnKnowledgeBasePropsMixin.ManagedSourceConfigurationProperty.Builder builder()
-