Show / Hide Table of Contents

Class CfnDataSourcePropsMixin.WebDataSourceConfigurationProperty

The configuration details for the web data source.

Inheritance
object
CfnDataSourcePropsMixin.WebDataSourceConfigurationProperty
Implements
CfnDataSourcePropsMixin.IWebDataSourceConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.WebDataSourceConfigurationProperty : CfnDataSourcePropsMixin.IWebDataSourceConfigurationProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.WebDataSourceConfigurationProperty Implements CfnDataSourcePropsMixin.IWebDataSourceConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-webdatasourceconfiguration.html

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.Mixins.Preview.AWS.Bedrock.Mixins;

             var webDataSourceConfigurationProperty = new WebDataSourceConfigurationProperty {
                 CrawlerConfiguration = new WebCrawlerConfigurationProperty {
                     CrawlerLimits = new WebCrawlerLimitsProperty {
                         MaxPages = 123,
                         RateLimit = 123
                     },
                     ExclusionFilters = new [] { "exclusionFilters" },
                     InclusionFilters = new [] { "inclusionFilters" },
                     Scope = "scope",
                     UserAgent = "userAgent",
                     UserAgentHeader = "userAgentHeader"
                 },
                 SourceConfiguration = new WebSourceConfigurationProperty {
                     UrlConfiguration = new UrlConfigurationProperty {
                         SeedUrls = new [] { new SeedUrlProperty {
                             Url = "url"
                         } }
                     }
                 }
             };

Synopsis

Constructors

WebDataSourceConfigurationProperty()

The configuration details for the web data source.

Properties

CrawlerConfiguration

The Web Crawler configuration details for the web data source.

SourceConfiguration

The source configuration details for the web data source.

Constructors

WebDataSourceConfigurationProperty()

The configuration details for the web data source.

public WebDataSourceConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-webdatasourceconfiguration.html

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.Mixins.Preview.AWS.Bedrock.Mixins;

             var webDataSourceConfigurationProperty = new WebDataSourceConfigurationProperty {
                 CrawlerConfiguration = new WebCrawlerConfigurationProperty {
                     CrawlerLimits = new WebCrawlerLimitsProperty {
                         MaxPages = 123,
                         RateLimit = 123
                     },
                     ExclusionFilters = new [] { "exclusionFilters" },
                     InclusionFilters = new [] { "inclusionFilters" },
                     Scope = "scope",
                     UserAgent = "userAgent",
                     UserAgentHeader = "userAgentHeader"
                 },
                 SourceConfiguration = new WebSourceConfigurationProperty {
                     UrlConfiguration = new UrlConfigurationProperty {
                         SeedUrls = new [] { new SeedUrlProperty {
                             Url = "url"
                         } }
                     }
                 }
             };

Properties

CrawlerConfiguration

The Web Crawler configuration details for the web data source.

public object? CrawlerConfiguration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-webdatasourceconfiguration.html#cfn-bedrock-datasource-webdatasourceconfiguration-crawlerconfiguration

Type union: either IResolvable or CfnDataSourcePropsMixin.IWebCrawlerConfigurationProperty

SourceConfiguration

The source configuration details for the web data source.

public object? SourceConfiguration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-webdatasourceconfiguration.html#cfn-bedrock-datasource-webdatasourceconfiguration-sourceconfiguration

Type union: either IResolvable or CfnDataSourcePropsMixin.IWebSourceConfigurationProperty

Implements

CfnDataSourcePropsMixin.IWebDataSourceConfigurationProperty
Back to top Generated by DocFX