Interface CfnKnowledgeBase.SourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnKnowledgeBase.SourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnKnowledgeBase
@Stability(Stable)
public static interface CfnKnowledgeBase.SourceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration information about the external 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.*; SourceConfigurationProperty sourceConfigurationProperty = SourceConfigurationProperty.builder() .appIntegrations(AppIntegrationsConfigurationProperty.builder() .appIntegrationArn("appIntegrationArn") // the properties below are optional .objectFields(List.of("objectFields")) .build()) .managedSourceConfiguration(ManagedSourceConfigurationProperty.builder() .webCrawlerConfiguration(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()) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnKnowledgeBase.SourceConfigurationProperty
static final class
An implementation forCfnKnowledgeBase.SourceConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAppIntegrations
Configuration information for Amazon AppIntegrations to automatically ingest content.- See Also:
-
getManagedSourceConfiguration
Source configuration for managed resources.- See Also:
-
builder
-