interface SalesforceCrawlerConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_bedrock.CfnDataSource.SalesforceCrawlerConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataSource_SalesforceCrawlerConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataSource.SalesforceCrawlerConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataSource.SalesforceCrawlerConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataSource » SalesforceCrawlerConfigurationProperty |
The configuration of the Salesforce content.
For example, configuring specific types of Salesforce content.
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-lib';
const salesforceCrawlerConfigurationProperty: bedrock.CfnDataSource.SalesforceCrawlerConfigurationProperty = {
filterConfiguration: {
type: 'type',
// the properties below are optional
patternObjectFilter: {
filters: [{
objectType: 'objectType',
// the properties below are optional
exclusionFilters: ['exclusionFilters'],
inclusionFilters: ['inclusionFilters'],
}],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| filter | IResolvable | Crawl | The configuration of filtering the Salesforce content. |
filterConfiguration?
Type:
IResolvable | Crawl
(optional)
The configuration of filtering the Salesforce content.
For example, configuring regular expression patterns to include or exclude certain content.

.NET
Go
Java
Python
TypeScript