interface TaskProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.TaskProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_TaskProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.TaskProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.TaskProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » TaskProperty |
A class for modeling different type of tasks.
Task implementation varies based on the TaskType .
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-task.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const taskProperty: appflow_mixins.CfnFlowPropsMixin.TaskProperty = {
connectorOperator: {
amplitude: 'amplitude',
customConnector: 'customConnector',
datadog: 'datadog',
dynatrace: 'dynatrace',
googleAnalytics: 'googleAnalytics',
inforNexus: 'inforNexus',
marketo: 'marketo',
pardot: 'pardot',
s3: 's3',
salesforce: 'salesforce',
sapoData: 'sapoData',
serviceNow: 'serviceNow',
singular: 'singular',
slack: 'slack',
trendmicro: 'trendmicro',
veeva: 'veeva',
zendesk: 'zendesk',
},
destinationField: 'destinationField',
sourceFields: ['sourceFields'],
taskProperties: [{
key: 'key',
value: 'value',
}],
taskType: 'taskType',
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | IResolvable | Connector | The operation to be performed on the provided source fields. |
| destination | string | A field in a destination connector, or a field value against which Amazon AppFlow validates a source field. |
| source | string[] | The source fields to which a particular task is applied. |
| task | IResolvable | (IResolvable | Task)[] | A map used to store task-related information. |
| task | string | Specifies the particular task implementation that Amazon AppFlow performs. |
connectorOperator?
Type:
IResolvable | Connector
(optional)
The operation to be performed on the provided source fields.
destinationField?
Type:
string
(optional)
A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
sourceFields?
Type:
string[]
(optional)
The source fields to which a particular task is applied.
taskProperties?
Type:
IResolvable | (IResolvable | Task)[]
(optional)
A map used to store task-related information.
The execution service looks for particular information based on the TaskType .
taskType?
Type:
string
(optional)
Specifies the particular task implementation that Amazon AppFlow performs.
Allowed values : Arithmetic | Filter | Map | Map_all | Mask | Merge | Truncate | Validate

.NET
Go
Java
Python
TypeScript