Interface CfnIntegrationPropsMixin.SalesforceSourcePropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntegrationPropsMixin.SalesforceSourcePropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnIntegrationPropsMixin
@Stability(Stable)
public static interface CfnIntegrationPropsMixin.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.cfnpropertymixins.services.customerprofiles.*;
SalesforceSourcePropertiesProperty salesforceSourcePropertiesProperty = SalesforceSourcePropertiesProperty.builder()
.enableDynamicFieldUpdate(false)
.includeDeletedRecords(false)
.object("object")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnIntegrationPropsMixin.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.default StringThe object specified in the Salesforce flow source.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnableDynamicFieldUpdate
The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.Returns union: either
BooleanorIResolvable- See Also:
-
getIncludeDeletedRecords
Indicates whether Amazon AppFlow includes deleted files in the flow run.Returns union: either
BooleanorIResolvable- See Also:
-
getObject
The object specified in the Salesforce flow source.- See Also:
-
builder
@Stability(Stable) static CfnIntegrationPropsMixin.SalesforceSourcePropertiesProperty.Builder builder()
-