@Stability(value=Stable)
public static interface CfnIntegration.SourceConnectorPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnIntegration.SourceConnectorPropertiesProperty.Builder
A builder for
CfnIntegration.SourceConnectorPropertiesProperty |
static class |
CfnIntegration.SourceConnectorPropertiesProperty.Jsii$Proxy
An implementation for
CfnIntegration.SourceConnectorPropertiesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnIntegration.SourceConnectorPropertiesProperty.Builder |
builder() |
default Object |
getMarketo()
The properties that are applied when Marketo is being used as a source.
|
default Object |
getS3()
The properties that are applied when Amazon S3 is being used as the flow source.
|
default Object |
getSalesforce()
The properties that are applied when Salesforce is being used as a source.
|
default Object |
getServiceNow()
The properties that are applied when ServiceNow is being used as a source.
|
default Object |
getZendesk()
The properties that are applied when using Zendesk as a flow source.
|
@Stability(value=Stable) @Nullable default Object getMarketo()
@Stability(value=Stable) @Nullable default Object getS3()
@Stability(value=Stable) @Nullable default Object getSalesforce()
@Stability(value=Stable) @Nullable default Object getServiceNow()
@Stability(value=Stable) @Nullable default Object getZendesk()
@Stability(value=Stable) static CfnIntegration.SourceConnectorPropertiesProperty.Builder builder()
Copyright © 2022. All rights reserved.