Interface CfnDataSourcePropsMixin.UrlConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSourcePropsMixin.UrlConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDataSourcePropsMixin

@Stability(Stable) public static interface CfnDataSourcePropsMixin.UrlConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration of web URLs 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 software.amazon.awscdk.cfnpropertymixins.services.bedrock.*;
 UrlConfigurationProperty urlConfigurationProperty = UrlConfigurationProperty.builder()
         .seedUrls(List.of(SeedUrlProperty.builder()
                 .url("url")
                 .build()))
         .build();
 

See Also: