Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Task

import type { Task } from "https://aws-api.deno.dev/v0.4/services/appflow.ts?docs=full";

A class for modeling different type of tasks. Task implementation varies based on the TaskType.

interface Task {
connectorOperator?: ConnectorOperator | null;
destinationField?: string | null;
sourceFields: string[];
taskProperties?: [key in OperatorPropertiesKeys]: string | null | undefined | null;
taskType: TaskType;
}

§Properties

§
connectorOperator?: ConnectorOperator | null
[src]

The operation to be performed on the provided source fields.

§
destinationField?: string | null
[src]

A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.

§
sourceFields: string[]
[src]

The source fields to which a particular task is applied.

§
taskProperties?: [key in OperatorPropertiesKeys]: string | null | undefined | null
[src]

A map used to store task-related information. The execution service looks for particular information based on the TaskType.

§
taskType: TaskType
[src]

Specifies the particular task implementation that Amazon AppFlow performs.