Interface CfnIntegrationPropsMixin.SourceFlowConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntegrationPropsMixin.SourceFlowConfigProperty.Jsii$Proxy
- Enclosing class:
CfnIntegrationPropsMixin
@Stability(Stable)
public static interface CfnIntegrationPropsMixin.SourceFlowConfigProperty
extends software.amazon.jsii.JsiiSerializable
The configuration that controls how Customer Profiles retrieves data from the source.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.*;
SourceFlowConfigProperty sourceFlowConfigProperty = SourceFlowConfigProperty.builder()
.connectorProfileName("connectorProfileName")
.connectorType("connectorType")
.incrementalPullConfig(IncrementalPullConfigProperty.builder()
.datetimeTypeFieldName("datetimeTypeFieldName")
.build())
.sourceConnectorProperties(SourceConnectorPropertiesProperty.builder()
.marketo(MarketoSourcePropertiesProperty.builder()
.object("object")
.build())
.s3(S3SourcePropertiesProperty.builder()
.bucketName("bucketName")
.bucketPrefix("bucketPrefix")
.build())
.salesforce(SalesforceSourcePropertiesProperty.builder()
.enableDynamicFieldUpdate(false)
.includeDeletedRecords(false)
.object("object")
.build())
.serviceNow(ServiceNowSourcePropertiesProperty.builder()
.object("object")
.build())
.zendesk(ZendeskSourcePropertiesProperty.builder()
.object("object")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIntegrationPropsMixin.SourceFlowConfigPropertystatic final classAn implementation forCfnIntegrationPropsMixin.SourceFlowConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the Amazon AppFlow connector profile.default StringThe type of connector, such as Salesforce, Marketo, and so on.default ObjectDefines the configuration for a scheduled incremental data pull.default ObjectSpecifies the information that is required to query a particular source connector.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectorProfileName
The name of the Amazon AppFlow connector profile.This name must be unique for each connector profile in the AWS account .
- See Also:
-
getConnectorType
The type of connector, such as Salesforce, Marketo, and so on.- See Also:
-
getIncrementalPullConfig
Defines the configuration for a scheduled incremental data pull.If a valid configuration is provided, the fields specified in the configuration are used when querying for the incremental data pull.
Returns union: either
IResolvableorCfnIntegrationPropsMixin.IncrementalPullConfigProperty- See Also:
-
getSourceConnectorProperties
Specifies the information that is required to query a particular source connector.Returns union: either
IResolvableorCfnIntegrationPropsMixin.SourceConnectorPropertiesProperty- See Also:
-
builder
-