interface WebSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnDataSourcePropsMixin.WebSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnDataSourcePropsMixin_WebSourceConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnDataSourcePropsMixin.WebSourceConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataSourcePropsMixin.WebSourceConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnDataSourcePropsMixin » WebSourceConfigurationProperty |
The configuration of the URL/URLs for the web content that you want to crawl.
You should be authorized to crawl the URLs.
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/cfn-property-mixins';
const webSourceConfigurationProperty: bedrock.CfnDataSourcePropsMixin.WebSourceConfigurationProperty = {
urlConfiguration: {
seedUrls: [{
url: 'url',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| url | IResolvable | Url | The configuration of the URL/URLs. |
urlConfiguration?
Type:
IResolvable | Url
(optional)
The configuration of the URL/URLs.

.NET
Go
Java
Python
TypeScript