interface UrlConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Wisdom.CfnKnowledgeBase.UrlConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswisdom#CfnKnowledgeBase_UrlConfigurationProperty |
Java | software.amazon.awscdk.services.wisdom.CfnKnowledgeBase.UrlConfigurationProperty |
Python | aws_cdk.aws_wisdom.CfnKnowledgeBase.UrlConfigurationProperty |
TypeScript | aws-cdk-lib » aws_wisdom » CfnKnowledgeBase » UrlConfigurationProperty |
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_wisdom as wisdom } from 'aws-cdk-lib';
const urlConfigurationProperty: wisdom.CfnKnowledgeBase.UrlConfigurationProperty = {
seedUrls: [{
url: 'url',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| seed | IResolvable | (IResolvable | Seed)[] | List of URLs for crawling. |
seedUrls?
Type:
IResolvable | (IResolvable | Seed)[]
(optional)
List of URLs for crawling.

.NET
Go
Java
Python
TypeScript