interface SalesforceSourcePropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnIntegrationPropsMixin.SalesforceSourcePropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnIntegrationPropsMixin_SalesforceSourcePropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnIntegrationPropsMixin.SalesforceSourcePropertiesProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnIntegrationPropsMixin.SalesforceSourcePropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnIntegrationPropsMixin » SalesforceSourcePropertiesProperty |
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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const salesforceSourcePropertiesProperty: customerprofiles_mixins.CfnIntegrationPropsMixin.SalesforceSourcePropertiesProperty = {
enableDynamicFieldUpdate: false,
includeDeletedRecords: false,
object: 'object',
};
Properties
| Name | Type | Description |
|---|---|---|
| enable | boolean | IResolvable | The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow. |
| include | boolean | IResolvable | Indicates whether Amazon AppFlow includes deleted files in the flow run. |
| object? | string | The object specified in the Salesforce flow source. |
enableDynamicFieldUpdate?
Type:
boolean | IResolvable
(optional)
The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a flow.
includeDeletedRecords?
Type:
boolean | IResolvable
(optional)
Indicates whether Amazon AppFlow includes deleted files in the flow run.
object?
Type:
string
(optional)
The object specified in the Salesforce flow source.

.NET
Go
Java
Python
TypeScript