interface WebDataSourceConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_bedrock.CfnDataSource.WebDataSourceConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataSource_WebDataSourceConfigurationProperty | 
|  Java | software.amazon.awscdk.services.bedrock.CfnDataSource.WebDataSourceConfigurationProperty | 
|  Python | aws_cdk.aws_bedrock.CfnDataSource.WebDataSourceConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_bedrock»CfnDataSource»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 { aws_bedrock as bedrock } from 'aws-cdk-lib';
const webDataSourceConfigurationProperty: bedrock.CfnDataSource.WebDataSourceConfigurationProperty = {
  sourceConfiguration: {
    urlConfiguration: {
      seedUrls: [{
        url: 'url',
      }],
    },
  },
  // the properties below are optional
  crawlerConfiguration: {
    crawlerLimits: {
      maxPages: 123,
      rateLimit: 123,
    },
    exclusionFilters: ['exclusionFilters'],
    inclusionFilters: ['inclusionFilters'],
    scope: 'scope',
    userAgent: 'userAgent',
    userAgentHeader: 'userAgentHeader',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| source | IResolvable | Web | The source configuration details for the web data source. | 
| crawler | IResolvable | Web | The Web Crawler configuration details for the web data source. | 
sourceConfiguration
Type:
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.
