@Stability(value=Stable)
public static interface CfnIntegration.TaskProperty
extends software.amazon.jsii.JsiiSerializable
Task implementation varies based on the TaskType.
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.*;
TaskProperty taskProperty = 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnIntegration.TaskProperty.Builder
A builder for
CfnIntegration.TaskProperty |
static class |
CfnIntegration.TaskProperty.Jsii$Proxy
An implementation for
CfnIntegration.TaskProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnIntegration.TaskProperty.Builder |
builder() |
default Object |
getConnectorOperator()
The operation to be performed on the provided source fields.
|
default String |
getDestinationField()
A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
|
List<String> |
getSourceFields()
The source fields to which a particular task is applied.
|
default Object |
getTaskProperties()
A map used to store task-related information.
|
String |
getTaskType()
Specifies the particular task implementation that Amazon AppFlow performs.
|
@Stability(value=Stable) @NotNull List<String> getSourceFields()
@Stability(value=Stable) @NotNull String getTaskType()
@Stability(value=Stable) @Nullable default Object getConnectorOperator()
@Stability(value=Stable) @Nullable default String getDestinationField()
@Stability(value=Stable) @Nullable default Object getTaskProperties()
The service looks for particular information based on the TaskType.
@Stability(value=Stable) static CfnIntegration.TaskProperty.Builder builder()
Copyright © 2022. All rights reserved.