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.3/services/customerprofiles.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 service looks for particular information based on the TaskType.

§
TaskType: TaskType
[src]

Specifies the particular task implementation that Amazon AppFlow performs.