interface SharePointDataSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnDataSourcePropsMixin_SharePointDataSourceConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const sharePointDataSourceConfigurationProperty: bedrock.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