@Stability(value=Stable)
public static interface CfnIntegration.FlowDefinitionProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
FlowDefinitionProperty flowDefinitionProperty = 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnIntegration.FlowDefinitionProperty.Builder
A builder for
CfnIntegration.FlowDefinitionProperty |
static class |
CfnIntegration.FlowDefinitionProperty.Jsii$Proxy
An implementation for
CfnIntegration.FlowDefinitionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnIntegration.FlowDefinitionProperty.Builder |
builder() |
default String |
getDescription()
`CfnIntegration.FlowDefinitionProperty.Description`.
|
String |
getFlowName()
`CfnIntegration.FlowDefinitionProperty.FlowName`.
|
String |
getKmsArn()
`CfnIntegration.FlowDefinitionProperty.KmsArn`.
|
Object |
getSourceFlowConfig()
`CfnIntegration.FlowDefinitionProperty.SourceFlowConfig`.
|
Object |
getTasks()
`CfnIntegration.FlowDefinitionProperty.Tasks`.
|
Object |
getTriggerConfig()
`CfnIntegration.FlowDefinitionProperty.TriggerConfig`.
|
@Stability(value=Stable) @NotNull String getFlowName()
@Stability(value=Stable) @NotNull String getKmsArn()
@Stability(value=Stable) @NotNull Object getSourceFlowConfig()
@Stability(value=Stable) @NotNull Object getTasks()
@Stability(value=Stable) @NotNull Object getTriggerConfig()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) static CfnIntegration.FlowDefinitionProperty.Builder builder()
Copyright © 2022. All rights reserved.