interface SharePointDataSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataSourcePropsMixin_SharePointDataSourceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataSourcePropsMixin » SharePointDataSourceConfigurationProperty |
The configuration information to connect to SharePoint as your data source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const sharePointDataSourceConfigurationProperty: bedrock_mixins.CfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty = {
crawlerConfiguration: {
filterConfiguration: {
patternObjectFilter: {
filters: [{
exclusionFilters: ['exclusionFilters'],
inclusionFilters: ['inclusionFilters'],
objectType: 'objectType',
}],
},
type: 'type',
},
},
sourceConfiguration: {
authType: 'authType',
credentialsSecretArn: 'credentialsSecretArn',
domain: 'domain',
hostType: 'hostType',
siteUrls: ['siteUrls'],
tenantId: 'tenantId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| crawler | IResolvable | Share | The configuration of the SharePoint content. |
| source | IResolvable | Share | The endpoint information to connect to your SharePoint data source. |
crawlerConfiguration?
Type:
IResolvable | Share
(optional)
The configuration of the SharePoint content.
For example, configuring specific types of SharePoint content.
sourceConfiguration?
Type:
IResolvable | Share
(optional)
The endpoint information to connect to your SharePoint data source.

.NET
Go
Java
Python
TypeScript