@Stability(value=Stable)
public static interface CfnIntegration.SourceFlowConfigProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
SourceFlowConfigProperty sourceFlowConfigProperty = SourceFlowConfigProperty.builder()
.connectorType("connectorType")
.sourceConnectorProperties(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())
// the properties below are optional
.connectorProfileName("connectorProfileName")
.incrementalPullConfig(IncrementalPullConfigProperty.builder()
.datetimeTypeFieldName("datetimeTypeFieldName")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnIntegration.SourceFlowConfigProperty.Builder
A builder for
CfnIntegration.SourceFlowConfigProperty |
static class |
CfnIntegration.SourceFlowConfigProperty.Jsii$Proxy
An implementation for
CfnIntegration.SourceFlowConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnIntegration.SourceFlowConfigProperty.Builder |
builder() |
default String |
getConnectorProfileName()
The name of the Amazon AppFlow connector profile.
|
String |
getConnectorType()
The type of connector, such as Salesforce, Marketo, and so on.
|
default Object |
getIncrementalPullConfig()
Defines the configuration for a scheduled incremental data pull.
|
Object |
getSourceConnectorProperties()
Specifies the information that is required to query a particular source connector.
|
@Stability(value=Stable) @NotNull String getConnectorType()
@Stability(value=Stable) @NotNull Object getSourceConnectorProperties()
@Stability(value=Stable) @Nullable default String getConnectorProfileName()
This name must be unique for each connector profile in the AWS account .
@Stability(value=Stable) @Nullable default Object getIncrementalPullConfig()
If a valid configuration is provided, the fields specified in the configuration are used when querying for the incremental data pull.
@Stability(value=Stable) static CfnIntegration.SourceFlowConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.