Class CfnIntegration.SalesforceSourcePropertiesProperty
The properties that are applied when Salesforce is being used as a source.
Inherited Members
Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnIntegration.SalesforceSourcePropertiesProperty : CfnIntegration.ISalesforceSourcePropertiesProperty
Syntax (vb)
Public Class CfnIntegration.SalesforceSourcePropertiesProperty Implements CfnIntegration.ISalesforceSourcePropertiesProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CustomerProfiles;
var salesforceSourcePropertiesProperty = new SalesforceSourcePropertiesProperty {
Object = "object",
// the properties below are optional
EnableDynamicFieldUpdate = false,
IncludeDeletedRecords = false
};
Synopsis
Constructors
| SalesforceSourcePropertiesProperty() | The properties that are applied when Salesforce is being used as a source. |
Properties
| EnableDynamicFieldUpdate | The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow. |
| IncludeDeletedRecords | Indicates whether Amazon AppFlow includes deleted files in the flow run. |
| Object | The object specified in the Salesforce flow source. |
Constructors
SalesforceSourcePropertiesProperty()
The properties that are applied when Salesforce is being used as a source.
public SalesforceSourcePropertiesProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CustomerProfiles;
var salesforceSourcePropertiesProperty = new SalesforceSourcePropertiesProperty {
Object = "object",
// the properties below are optional
EnableDynamicFieldUpdate = false,
IncludeDeletedRecords = false
};
Properties
EnableDynamicFieldUpdate
The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.
public object? EnableDynamicFieldUpdate { get; set; }
Property Value
Remarks
IncludeDeletedRecords
Indicates whether Amazon AppFlow includes deleted files in the flow run.
public object? IncludeDeletedRecords { get; set; }
Property Value
Remarks
Object
The object specified in the Salesforce flow source.
public string Object { get; set; }