@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.790Z") @Stability(value=Stable) public interface CfnIntegrationProps 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.*;
CfnIntegrationProps cfnIntegrationProps = CfnIntegrationProps.builder()
.domainName("domainName")
// the properties below are optional
.flowDefinition(FlowDefinitionProperty.builder()
.flowName("flowName")
.kmsArn("kmsArn")
.sourceFlowConfig(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())
.tasks(List.of(TaskProperty.builder()
.sourceFields(List.of("sourceFields"))
.taskType("taskType")
// the properties below are optional
.connectorOperator(ConnectorOperatorProperty.builder()
.marketo("marketo")
.s3("s3")
.salesforce("salesforce")
.serviceNow("serviceNow")
.zendesk("zendesk")
.build())
.destinationField("destinationField")
.taskProperties(List.of(TaskPropertiesMapProperty.builder()
.operatorPropertyKey("operatorPropertyKey")
.property("property")
.build()))
.build()))
.triggerConfig(TriggerConfigProperty.builder()
.triggerType("triggerType")
// the properties below are optional
.triggerProperties(TriggerPropertiesProperty.builder()
.scheduled(ScheduledTriggerPropertiesProperty.builder()
.scheduleExpression("scheduleExpression")
// the properties below are optional
.dataPullMode("dataPullMode")
.firstExecutionFrom(123)
.scheduleEndTime(123)
.scheduleOffset(123)
.scheduleStartTime(123)
.timezone("timezone")
.build())
.build())
.build())
// the properties below are optional
.description("description")
.build())
.objectTypeName("objectTypeName")
.objectTypeNames(List.of(ObjectTypeMappingProperty.builder()
.key("key")
.value("value")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.uri("uri")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnIntegrationProps.Builder
A builder for
CfnIntegrationProps |
static class |
CfnIntegrationProps.Jsii$Proxy
An implementation for
CfnIntegrationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnIntegrationProps.Builder |
builder() |
String |
getDomainName()
The unique name of the domain.
|
default Object |
getFlowDefinition()
The configuration that controls how Customer Profiles retrieves data from the source.
|
default String |
getObjectTypeName()
The name of the profile object type mapping to use.
|
default Object |
getObjectTypeNames()
The object type mapping.
|
default List<CfnTag> |
getTags()
The tags used to organize, track, or control access for this resource.
|
default String |
getUri()
The URI of the S3 bucket or any other type of data source.
|
@Stability(value=Stable) @NotNull String getDomainName()
@Stability(value=Stable) @Nullable default Object getFlowDefinition()
@Stability(value=Stable) @Nullable default String getObjectTypeName()
@Stability(value=Stable) @Nullable default Object getObjectTypeNames()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default String getUri()
@Stability(value=Stable) static CfnIntegrationProps.Builder builder()
CfnIntegrationProps.Builder of CfnIntegrationPropsCopyright © 2022. All rights reserved.