Show / Hide Table of Contents

Class CfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty

The configuration information to connect to SharePoint as your data source.

Inheritance
object
CfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty
Implements
CfnDataSourcePropsMixin.ISharePointDataSourceConfigurationProperty
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.SharePointDataSourceConfigurationProperty : CfnDataSourcePropsMixin.ISharePointDataSourceConfigurationProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty Implements CfnDataSourcePropsMixin.ISharePointDataSourceConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-sharepointdatasourceconfiguration.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 sharePointDataSourceConfigurationProperty = new SharePointDataSourceConfigurationProperty {
                 CrawlerConfiguration = new SharePointCrawlerConfigurationProperty {
                     FilterConfiguration = new CrawlFilterConfigurationProperty {
                         PatternObjectFilter = new PatternObjectFilterConfigurationProperty {
                             Filters = new [] { new PatternObjectFilterProperty {
                                 ExclusionFilters = new [] { "exclusionFilters" },
                                 InclusionFilters = new [] { "inclusionFilters" },
                                 ObjectType = "objectType"
                             } }
                         },
                         Type = "type"
                     }
                 },
                 SourceConfiguration = new SharePointSourceConfigurationProperty {
                     AuthType = "authType",
                     CredentialsSecretArn = "credentialsSecretArn",
                     Domain = "domain",
                     HostType = "hostType",
                     SiteUrls = new [] { "siteUrls" },
                     TenantId = "tenantId"
                 }
             };

Synopsis

Constructors

SharePointDataSourceConfigurationProperty()

The configuration information to connect to SharePoint as your data source.

Properties

CrawlerConfiguration

The configuration of the SharePoint content.

SourceConfiguration

The endpoint information to connect to your SharePoint data source.

Constructors

SharePointDataSourceConfigurationProperty()

The configuration information to connect to SharePoint as your data source.

public SharePointDataSourceConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-sharepointdatasourceconfiguration.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 sharePointDataSourceConfigurationProperty = new SharePointDataSourceConfigurationProperty {
                 CrawlerConfiguration = new SharePointCrawlerConfigurationProperty {
                     FilterConfiguration = new CrawlFilterConfigurationProperty {
                         PatternObjectFilter = new PatternObjectFilterConfigurationProperty {
                             Filters = new [] { new PatternObjectFilterProperty {
                                 ExclusionFilters = new [] { "exclusionFilters" },
                                 InclusionFilters = new [] { "inclusionFilters" },
                                 ObjectType = "objectType"
                             } }
                         },
                         Type = "type"
                     }
                 },
                 SourceConfiguration = new SharePointSourceConfigurationProperty {
                     AuthType = "authType",
                     CredentialsSecretArn = "credentialsSecretArn",
                     Domain = "domain",
                     HostType = "hostType",
                     SiteUrls = new [] { "siteUrls" },
                     TenantId = "tenantId"
                 }
             };

Properties

CrawlerConfiguration

The configuration of the SharePoint content.

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

object

Remarks

For example, configuring specific types of SharePoint content.

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

Type union: either IResolvable or CfnDataSourcePropsMixin.ISharePointCrawlerConfigurationProperty

SourceConfiguration

The endpoint information to connect to your SharePoint data source.

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

object

Remarks

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

Type union: either IResolvable or CfnDataSourcePropsMixin.ISharePointSourceConfigurationProperty

Implements

CfnDataSourcePropsMixin.ISharePointDataSourceConfigurationProperty
Back to top Generated by DocFX