Interface CfnDataSourcePropsMixin.IWebSourceConfigurationProperty
The configuration of the URL/URLs for the web content that you want to crawl.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Bedrock
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnDataSourcePropsMixin.IWebSourceConfigurationProperty
Syntax (vb)
Public Interface CfnDataSourcePropsMixin.IWebSourceConfigurationProperty
Remarks
You should be authorized to crawl the URLs.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Bedrock;
var webSourceConfigurationProperty = new WebSourceConfigurationProperty {
UrlConfiguration = new UrlConfigurationProperty {
SeedUrls = new [] { new SeedUrlProperty {
Url = "url"
} }
}
};
Synopsis
Properties
| UrlConfiguration | The configuration of the URL/URLs. |
Properties
UrlConfiguration
The configuration of the URL/URLs.
object? UrlConfiguration { get; }