Interface CfnIntegrationPropsMixin.SourceConnectorPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntegrationPropsMixin.SourceConnectorPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnIntegrationPropsMixin
@Stability(Stable)
public static interface CfnIntegrationPropsMixin.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.cfnpropertymixins.services.customerprofiles.*;
SourceConnectorPropertiesProperty sourceConnectorPropertiesProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnIntegrationPropsMixin.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.Returns union: either
IResolvableorCfnIntegrationPropsMixin.MarketoSourcePropertiesProperty- See Also:
-
getS3
The properties that are applied when Amazon S3 is being used as the flow source.Returns union: either
IResolvableorCfnIntegrationPropsMixin.S3SourcePropertiesProperty- See Also:
-
getSalesforce
The properties that are applied when Salesforce is being used as a source.Returns union: either
IResolvableorCfnIntegrationPropsMixin.SalesforceSourcePropertiesProperty- See Also:
-
getServiceNow
The properties that are applied when ServiceNow is being used as a source.Returns union: either
IResolvableorCfnIntegrationPropsMixin.ServiceNowSourcePropertiesProperty- See Also:
-
getZendesk
The properties that are applied when using Zendesk as a flow source.Returns union: either
IResolvableorCfnIntegrationPropsMixin.ZendeskSourcePropertiesProperty- See Also:
-
builder
@Stability(Stable) static CfnIntegrationPropsMixin.SourceConnectorPropertiesProperty.Builder builder()
-