Show / Hide Table of Contents

Class CfnKnowledgeBasePropsMixin.ManagedSourceConfigurationProperty

Source configuration for managed resources.

Inheritance
object
CfnKnowledgeBasePropsMixin.ManagedSourceConfigurationProperty
Implements
CfnKnowledgeBasePropsMixin.IManagedSourceConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Wisdom
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnKnowledgeBasePropsMixin.ManagedSourceConfigurationProperty : CfnKnowledgeBasePropsMixin.IManagedSourceConfigurationProperty
Syntax (vb)
Public Class CfnKnowledgeBasePropsMixin.ManagedSourceConfigurationProperty Implements CfnKnowledgeBasePropsMixin.IManagedSourceConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-managedsourceconfiguration.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.CfnPropertyMixins.AWS.Wisdom;

             var managedSourceConfigurationProperty = new ManagedSourceConfigurationProperty {
                 WebCrawlerConfiguration = new WebCrawlerConfigurationProperty {
                     CrawlerLimits = new CrawlerLimitsProperty {
                         RateLimit = 123
                     },
                     ExclusionFilters = new [] { "exclusionFilters" },
                     InclusionFilters = new [] { "inclusionFilters" },
                     Scope = "scope",
                     UrlConfiguration = new UrlConfigurationProperty {
                         SeedUrls = new [] { new SeedUrlProperty {
                             Url = "url"
                         } }
                     }
                 }
             };

Synopsis

Constructors

ManagedSourceConfigurationProperty()

Source configuration for managed resources.

Properties

WebCrawlerConfiguration

Configuration data for web crawler data source.

Constructors

ManagedSourceConfigurationProperty()

Source configuration for managed resources.

public ManagedSourceConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-managedsourceconfiguration.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.CfnPropertyMixins.AWS.Wisdom;

             var managedSourceConfigurationProperty = new ManagedSourceConfigurationProperty {
                 WebCrawlerConfiguration = new WebCrawlerConfigurationProperty {
                     CrawlerLimits = new CrawlerLimitsProperty {
                         RateLimit = 123
                     },
                     ExclusionFilters = new [] { "exclusionFilters" },
                     InclusionFilters = new [] { "inclusionFilters" },
                     Scope = "scope",
                     UrlConfiguration = new UrlConfigurationProperty {
                         SeedUrls = new [] { new SeedUrlProperty {
                             Url = "url"
                         } }
                     }
                 }
             };

Properties

WebCrawlerConfiguration

Configuration data for web crawler data source.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-managedsourceconfiguration.html#cfn-wisdom-knowledgebase-managedsourceconfiguration-webcrawlerconfiguration

Type union: either IResolvable or CfnKnowledgeBasePropsMixin.IWebCrawlerConfigurationProperty

Implements

CfnKnowledgeBasePropsMixin.IManagedSourceConfigurationProperty
Back to top Generated by DocFX