interface WebSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataSourcePropsMixin.WebSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataSourcePropsMixin_WebSourceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataSourcePropsMixin.WebSourceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataSourcePropsMixin.WebSourceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const webSourceConfigurationProperty: bedrock_mixins.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