interface SourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnKnowledgeBase.SourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnKnowledgeBase_SourceConfigurationProperty |
Java | software.amazon.awscdk.services.wisdom.CfnKnowledgeBase.SourceConfigurationProperty |
Python | aws_cdk.aws_wisdom.CfnKnowledgeBase.SourceConfigurationProperty |
TypeScript | aws-cdk-lib » aws_wisdom » CfnKnowledgeBase » SourceConfigurationProperty |
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 { aws_wisdom as wisdom } from 'aws-cdk-lib';
const sourceConfigurationProperty: wisdom.CfnKnowledgeBase.SourceConfigurationProperty = {
appIntegrations: {
appIntegrationArn: 'appIntegrationArn',
// the properties below are optional
objectFields: ['objectFields'],
},
managedSourceConfiguration: {
webCrawlerConfiguration: {
urlConfiguration: {
seedUrls: [{
url: 'url',
}],
},
// the properties below are optional
crawlerLimits: {
rateLimit: 123,
},
exclusionFilters: ['exclusionFilters'],
inclusionFilters: ['inclusionFilters'],
scope: 'scope',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| app | IResolvable | App | Configuration information for Amazon AppIntegrations to automatically ingest content. |
| managed | IResolvable | Managed | Source configuration for managed resources. |
appIntegrations?
Type:
IResolvable | App
(optional)
Configuration information for Amazon AppIntegrations to automatically ingest content.
managedSourceConfiguration?
Type:
IResolvable | Managed
(optional)
Source configuration for managed resources.

.NET
Go
Java
Python
TypeScript