interface SourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Wisdom.CfnKnowledgeBasePropsMixin.SourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswisdom#CfnKnowledgeBasePropsMixin_SourceConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wisdom.CfnKnowledgeBasePropsMixin.SourceConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_wisdom.CfnKnowledgeBasePropsMixin.SourceConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wisdom » CfnKnowledgeBasePropsMixin » 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/cfn-property-mixins';
const sourceConfigurationProperty: wisdom.CfnKnowledgeBasePropsMixin.SourceConfigurationProperty = {
appIntegrations: {
appIntegrationArn: 'appIntegrationArn',
objectFields: ['objectFields'],
},
managedSourceConfiguration: {
webCrawlerConfiguration: {
crawlerLimits: {
rateLimit: 123,
},
exclusionFilters: ['exclusionFilters'],
inclusionFilters: ['inclusionFilters'],
scope: 'scope',
urlConfiguration: {
seedUrls: [{
url: 'url',
}],
},
},
},
};
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