Interface CfnDataSource.SalesforceDataSourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.SalesforceDataSourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.SalesforceDataSourceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrock.*;
SalesforceDataSourceConfigurationProperty salesforceDataSourceConfigurationProperty = SalesforceDataSourceConfigurationProperty.builder()
.sourceConfiguration(SalesforceSourceConfigurationProperty.builder()
.authType("authType")
.credentialsSecretArn("credentialsSecretArn")
.hostUrl("hostUrl")
.build())
// the properties below are optional
.crawlerConfiguration(SalesforceCrawlerConfigurationProperty.builder()
.filterConfiguration(CrawlFilterConfigurationProperty.builder()
.type("type")
// the properties below are optional
.patternObjectFilter(PatternObjectFilterConfigurationProperty.builder()
.filters(List.of(PatternObjectFilterProperty.builder()
.objectType("objectType")
// the properties below are optional
.exclusionFilters(List.of("exclusionFilters"))
.inclusionFilters(List.of("inclusionFilters"))
.build()))
.build())
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSource.SalesforceDataSourceConfigurationPropertystatic final classAn implementation forCfnDataSource.SalesforceDataSourceConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceConfiguration
The endpoint information to connect to your Salesforce data source.Returns union: either
IResolvableorCfnDataSource.SalesforceSourceConfigurationProperty- See Also:
-
getCrawlerConfiguration
The configuration of the Salesforce content.For example, configuring specific types of Salesforce content.
Returns union: either
IResolvableorCfnDataSource.SalesforceCrawlerConfigurationProperty- See Also:
-
builder
-