Interface CfnIntegrationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntegrationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.754Z")
@Stability(Stable)
public interface CfnIntegrationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnIntegrationPropsMixin.
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.*;
CfnIntegrationMixinProps cfnIntegrationMixinProps = CfnIntegrationMixinProps.builder()
.domainName("domainName")
.eventTriggerNames(List.of("eventTriggerNames"))
.flowDefinition(FlowDefinitionProperty.builder()
.description("description")
.flowName("flowName")
.kmsArn("kmsArn")
.sourceFlowConfig(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())
.tasks(List.of(TaskProperty.builder()
.connectorOperator(ConnectorOperatorProperty.builder()
.marketo("marketo")
.s3("s3")
.salesforce("salesforce")
.serviceNow("serviceNow")
.zendesk("zendesk")
.build())
.destinationField("destinationField")
.sourceFields(List.of("sourceFields"))
.taskProperties(List.of(TaskPropertiesMapProperty.builder()
.operatorPropertyKey("operatorPropertyKey")
.property("property")
.build()))
.taskType("taskType")
.build()))
.triggerConfig(TriggerConfigProperty.builder()
.triggerProperties(TriggerPropertiesProperty.builder()
.scheduled(ScheduledTriggerPropertiesProperty.builder()
.dataPullMode("dataPullMode")
.firstExecutionFrom(123)
.scheduleEndTime(123)
.scheduleExpression("scheduleExpression")
.scheduleOffset(123)
.scheduleStartTime(123)
.timezone("timezone")
.build())
.build())
.triggerType("triggerType")
.build())
.build())
.objectTypeName("objectTypeName")
.objectTypeNames(List.of(ObjectTypeMappingProperty.builder()
.key("key")
.value("value")
.build()))
.scope("scope")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.uri("uri")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIntegrationMixinPropsstatic final classAn implementation forCfnIntegrationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe unique name of the domain.A list of unique names for active event triggers associated with the integration.default ObjectThe configuration that controls how Customer Profiles retrieves data from the source.default StringThe name of the profile object type mapping to use.default ObjectThe object type mapping.default StringgetScope()Scope of the integration, such as 'PROFILE' or 'DOMAIN'.getTags()The tags used to organize, track, or control access for this resource.default StringgetUri()The URI of the S3 bucket or any other type of data source.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainName
The unique name of the domain.- See Also:
-
getEventTriggerNames
A list of unique names for active event triggers associated with the integration.- See Also:
-
getFlowDefinition
The configuration that controls how Customer Profiles retrieves data from the source.Returns union: either
IResolvableorCfnIntegrationPropsMixin.FlowDefinitionProperty- See Also:
-
getObjectTypeName
The name of the profile object type mapping to use.- See Also:
-
getObjectTypeNames
The object type mapping.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnIntegrationPropsMixin.ObjectTypeMappingProperty>- See Also:
-
getScope
Scope of the integration, such as 'PROFILE' or 'DOMAIN'.- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.- See Also:
-
getUri
The URI of the S3 bucket or any other type of data source.- See Also:
-
builder
- Returns:
- a
CfnIntegrationMixinProps.BuilderofCfnIntegrationMixinProps
-