interface WebDataSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataSourcePropsMixin.WebDataSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataSourcePropsMixin_WebDataSourceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataSourcePropsMixin.WebDataSourceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataSourcePropsMixin.WebDataSourceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataSourcePropsMixin » WebDataSourceConfigurationProperty |
The configuration details for the web data source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const webDataSourceConfigurationProperty: bedrock_mixins.CfnDataSourcePropsMixin.WebDataSourceConfigurationProperty = {
crawlerConfiguration: {
crawlerLimits: {
maxPages: 123,
rateLimit: 123,
},
exclusionFilters: ['exclusionFilters'],
inclusionFilters: ['inclusionFilters'],
scope: 'scope',
userAgent: 'userAgent',
userAgentHeader: 'userAgentHeader',
},
sourceConfiguration: {
urlConfiguration: {
seedUrls: [{
url: 'url',
}],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| crawler | IResolvable | Web | The Web Crawler configuration details for the web data source. |
| source | IResolvable | Web | The source configuration details for the web data source. |
crawlerConfiguration?
Type:
IResolvable | Web
(optional)
The Web Crawler configuration details for the web data source.
sourceConfiguration?
Type:
IResolvable | Web
(optional)
The source configuration details for the web data source.

.NET
Go
Java
Python
TypeScript