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