Interface CfnIntegration.SourceConnectorPropertiesProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnIntegration.SourceConnectorPropertiesProperty.Jsii$Proxy
- Enclosing class:
 - CfnIntegration
 
@Stability(Stable)
public static interface CfnIntegration.SourceConnectorPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.customerprofiles.*;
 SourceConnectorPropertiesProperty sourceConnectorPropertiesProperty = SourceConnectorPropertiesProperty.builder()
         .marketo(MarketoSourcePropertiesProperty.builder()
                 .object("object")
                 .build())
         .s3(S3SourcePropertiesProperty.builder()
                 .bucketName("bucketName")
                 // the properties below are optional
                 .bucketPrefix("bucketPrefix")
                 .build())
         .salesforce(SalesforceSourcePropertiesProperty.builder()
                 .object("object")
                 // the properties below are optional
                 .enableDynamicFieldUpdate(false)
                 .includeDeletedRecords(false)
                 .build())
         .serviceNow(ServiceNowSourcePropertiesProperty.builder()
                 .object("object")
                 .build())
         .zendesk(ZendeskSourcePropertiesProperty.builder()
                 .object("object")
                 .build())
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIntegration.SourceConnectorPropertiesPropertystatic final classAn implementation forCfnIntegration.SourceConnectorPropertiesProperty - 
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe properties that are applied when Marketo is being used as a source.default ObjectgetS3()The properties that are applied when Amazon S3 is being used as the flow source.default ObjectThe properties that are applied when Salesforce is being used as a source.default ObjectThe properties that are applied when ServiceNow is being used as a source.default ObjectThe properties that are applied when using Zendesk as a flow source.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getMarketo
The properties that are applied when Marketo is being used as a source. - 
getS3
The properties that are applied when Amazon S3 is being used as the flow source. - 
getSalesforce
The properties that are applied when Salesforce is being used as a source. - 
getServiceNow
The properties that are applied when ServiceNow is being used as a source. - 
getZendesk
The properties that are applied when using Zendesk as a flow source. - 
builder
 
 -