aws-cdk-lib.aws_customerprofiles.CfnIntegration.SourceConnectorPropertiesProperty

interface SourceConnectorPropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.CustomerProfiles.CfnIntegration.SourceConnectorPropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnIntegration_SourceConnectorPropertiesProperty
Javasoftware.amazon.awscdk.services.customerprofiles.CfnIntegration.SourceConnectorPropertiesProperty
Pythonaws_cdk.aws_customerprofiles.CfnIntegration.SourceConnectorPropertiesProperty
TypeScript aws-cdk-lib » 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 { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
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

NameTypeDescription
marketo?IResolvable | MarketoSourcePropertiesPropertyThe properties that are applied when Marketo is being used as a source.
s3?IResolvable | S3SourcePropertiesPropertyThe properties that are applied when Amazon S3 is being used as the flow source.
salesforce?IResolvable | SalesforceSourcePropertiesPropertyThe properties that are applied when Salesforce is being used as a source.
serviceNow?IResolvable | ServiceNowSourcePropertiesPropertyThe properties that are applied when ServiceNow is being used as a source.
zendesk?IResolvable | ZendeskSourcePropertiesPropertyThe properties that are applied when using Zendesk as a flow source.

marketo?

Type: IResolvable | MarketoSourcePropertiesProperty (optional)

The properties that are applied when Marketo is being used as a source.


s3?

Type: IResolvable | S3SourcePropertiesProperty (optional)

The properties that are applied when Amazon S3 is being used as the flow source.


salesforce?

Type: IResolvable | SalesforceSourcePropertiesProperty (optional)

The properties that are applied when Salesforce is being used as a source.


serviceNow?

Type: IResolvable | ServiceNowSourcePropertiesProperty (optional)

The properties that are applied when ServiceNow is being used as a source.


zendesk?

Type: IResolvable | ZendeskSourcePropertiesProperty (optional)

The properties that are applied when using Zendesk as a flow source.