Interface CfnIntegration.SalesforceSourcePropertiesProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnIntegration.SalesforceSourcePropertiesProperty.Jsii$Proxy
- Enclosing class:
 - CfnIntegration
 
@Stability(Stable)
public static interface CfnIntegration.SalesforceSourcePropertiesProperty
extends software.amazon.jsii.JsiiSerializable
The properties that are applied when Salesforce is being used as a 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.customerprofiles.*;
 SalesforceSourcePropertiesProperty salesforceSourcePropertiesProperty = SalesforceSourcePropertiesProperty.builder()
         .object("object")
         // the properties below are optional
         .enableDynamicFieldUpdate(false)
         .includeDeletedRecords(false)
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIntegration.SalesforceSourcePropertiesPropertystatic final classAn implementation forCfnIntegration.SalesforceSourcePropertiesProperty - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.default ObjectIndicates whether Amazon AppFlow includes deleted files in the flow run.The object specified in the Salesforce flow source.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getObject
The object specified in the Salesforce flow source. - 
getEnableDynamicFieldUpdate
The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow. - 
getIncludeDeletedRecords
Indicates whether Amazon AppFlow includes deleted files in the flow run. - 
builder
 
 -