interface SalesforceDataSourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataSourcePropsMixin.SalesforceDataSourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataSourcePropsMixin_SalesforceDataSourceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataSourcePropsMixin.SalesforceDataSourceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataSourcePropsMixin.SalesforceDataSourceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataSourcePropsMixin » SalesforceDataSourceConfigurationProperty |
The configuration information to connect to Salesforce 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 salesforceDataSourceConfigurationProperty: bedrock_mixins.CfnDataSourcePropsMixin.SalesforceDataSourceConfigurationProperty = {
crawlerConfiguration: {
filterConfiguration: {
patternObjectFilter: {
filters: [{
exclusionFilters: ['exclusionFilters'],
inclusionFilters: ['inclusionFilters'],
objectType: 'objectType',
}],
},
type: 'type',
},
},
sourceConfiguration: {
authType: 'authType',
credentialsSecretArn: 'credentialsSecretArn',
hostUrl: 'hostUrl',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| crawler | IResolvable | Salesforce | The configuration of the Salesforce content. |
| source | IResolvable | Salesforce | The endpoint information to connect to your Salesforce data source. |
crawlerConfiguration?
Type:
IResolvable | Salesforce
(optional)
The configuration of the Salesforce content.
For example, configuring specific types of Salesforce content.
sourceConfiguration?
Type:
IResolvable | Salesforce
(optional)
The endpoint information to connect to your Salesforce data source.

.NET
Go
Java
Python
TypeScript