interface UrlConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Wisdom.Mixins.CfnKnowledgeBasePropsMixin.UrlConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awswisdom/mixins#CfnKnowledgeBasePropsMixin_UrlConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.wisdom.mixins.CfnKnowledgeBasePropsMixin.UrlConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_wisdom.mixins.CfnKnowledgeBasePropsMixin.UrlConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_wisdom » mixins » CfnKnowledgeBasePropsMixin » 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 { mixins as wisdom_mixins } from '@aws-cdk/mixins-preview/aws-wisdom';
const urlConfigurationProperty: wisdom_mixins.CfnKnowledgeBasePropsMixin.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