Interface CfnIntegration.TaskProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntegration.TaskProperty.Jsii$Proxy
- Enclosing class:
CfnIntegration
@Stability(Stable)
public static interface CfnIntegration.TaskProperty
extends software.amazon.jsii.JsiiSerializable
The
Task
property type specifies the class for modeling different type of tasks.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIntegration.TaskProperty
static final class
An implementation forCfnIntegration.TaskProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The operation to be performed on the provided source fields.default String
A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.The source fields to which a particular task is applied.default Object
A map used to store task-related information.Specifies the particular task implementation that Amazon AppFlow performs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceFields
The source fields to which a particular task is applied. -
getTaskType
Specifies the particular task implementation that Amazon AppFlow performs. -
getConnectorOperator
The operation to be performed on the provided source fields. -
getDestinationField
A field in a destination connector, or a field value against which Amazon AppFlow validates a source field. -
getTaskProperties
A map used to store task-related information.The service looks for particular information based on the TaskType.
-
builder
-