interface SourceConnectorPropertiesProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.CustomerProfiles.CfnIntegration.SourceConnectorPropertiesProperty | 
  Java | software.amazon.awscdk.services.customerprofiles.CfnIntegration.SourceConnectorPropertiesProperty | 
  Python | aws_cdk.aws_customerprofiles.CfnIntegration.SourceConnectorPropertiesProperty | 
  TypeScript  | @aws-cdk/aws-customerprofiles » CfnIntegration » SourceConnectorPropertiesProperty | 
Specifies the information that is required to query a particular Amazon AppFlow connector.
Customer Profiles supports Salesforce, Zendesk, Marketo, ServiceNow and Amazon S3.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as customerprofiles from '@aws-cdk/aws-customerprofiles';
const sourceConnectorPropertiesProperty: customerprofiles.CfnIntegration.SourceConnectorPropertiesProperty = {
  marketo: {
    object: 'object',
  },
  s3: {
    bucketName: 'bucketName',
    // the properties below are optional
    bucketPrefix: 'bucketPrefix',
  },
  salesforce: {
    object: 'object',
    // the properties below are optional
    enableDynamicFieldUpdate: false,
    includeDeletedRecords: false,
  },
  serviceNow: {
    object: 'object',
  },
  zendesk: {
    object: 'object',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| marketo? | IResolvable | Marketo | The properties that are applied when Marketo is being used as a source. | 
| s3? | IResolvable | S3 | The properties that are applied when Amazon S3 is being used as the flow source. | 
| salesforce? | IResolvable | Salesforce | The properties that are applied when Salesforce is being used as a source. | 
| service | IResolvable | Service | The properties that are applied when ServiceNow is being used as a source. | 
| zendesk? | IResolvable | Zendesk | The properties that are applied when using Zendesk as a flow source. | 
marketo?
Type:
IResolvable | Marketo
(optional)
The properties that are applied when Marketo is being used as a source.
s3?
Type:
IResolvable | S3
(optional)
The properties that are applied when Amazon S3 is being used as the flow source.
salesforce?
Type:
IResolvable | Salesforce
(optional)
The properties that are applied when Salesforce is being used as a source.
serviceNow?
Type:
IResolvable | Service
(optional)
The properties that are applied when ServiceNow is being used as a source.
zendesk?
Type:
IResolvable | Zendesk
(optional)
The properties that are applied when using Zendesk as a flow source.

 .NET
 Java
 Python
 TypeScript