Interface CfnIntegrationPropsMixin.TaskProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntegrationPropsMixin.TaskProperty.Jsii$Proxy
- Enclosing class:
CfnIntegrationPropsMixin
@Stability(Stable)
public static interface CfnIntegrationPropsMixin.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.cfnpropertymixins.services.customerprofiles.*;
TaskProperty taskProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIntegrationPropsMixin.TaskPropertystatic final classAn implementation forCfnIntegrationPropsMixin.TaskProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe operation to be performed on the provided source fields.default StringA 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 ObjectA map used to store task-related information.default StringSpecifies the particular task implementation that Amazon AppFlow performs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectorOperator
The operation to be performed on the provided source fields.Returns union: either
IResolvableorCfnIntegrationPropsMixin.ConnectorOperatorProperty- See Also:
-
getDestinationField
A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.- See Also:
-
getSourceFields
The source fields to which a particular task is applied.- See Also:
-
getTaskProperties
A map used to store task-related information.The service looks for particular information based on the TaskType.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnIntegrationPropsMixin.TaskPropertiesMapProperty>- See Also:
-
getTaskType
Specifies the particular task implementation that Amazon AppFlow performs.- See Also:
-
builder
-