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

FlowDefinition

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

The properties of the flow, such as its source, destination, trigger type, and so on.

interface FlowDefinition {
createdAt?: Date | number | null;
createdBy?: string | null;
description?: string | null;
destinationConnectorLabel?: string | null;
destinationConnectorType?: ConnectorType | null;
flowArn?: string | null;
flowName?: string | null;
flowStatus?: FlowStatus | null;
lastRunExecutionDetails?: ExecutionDetails | null;
lastUpdatedAt?: Date | number | null;
lastUpdatedBy?: string | null;
sourceConnectorLabel?: string | null;
sourceConnectorType?: ConnectorType | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
triggerType?: TriggerType | null;
}

§Properties

§
createdAt?: Date | number | null
[src]

Specifies when the flow was created.

§
createdBy?: string | null
[src]

The ARN of the user who created the flow.

§
description?: string | null
[src]

A user-entered description of the flow.

§
destinationConnectorLabel?: string | null
[src]

The label of the destination connector in the flow.

§
destinationConnectorType?: ConnectorType | null
[src]

Specifies the destination connector type, such as Salesforce, Amazon S3, Amplitude, and so on.

§
flowArn?: string | null
[src]

The flow's Amazon Resource Name (ARN).

§
flowName?: string | null
[src]

The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.

§
flowStatus?: FlowStatus | null
[src]

Indicates the current status of the flow.

§
lastRunExecutionDetails?: ExecutionDetails | null
[src]

Describes the details of the most recent flow run.

§
lastUpdatedAt?: Date | number | null
[src]

Specifies when the flow was last updated.

§
lastUpdatedBy?: string | null
[src]

Specifies the account user name that most recently updated the flow.

§
sourceConnectorLabel?: string | null
[src]

The label of the source connector in the flow.

§
sourceConnectorType?: ConnectorType | null
[src]

Specifies the source connector type, such as Salesforce, Amazon S3, Amplitude, and so on.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags used to organize, track, or control access for your flow.

§
triggerType?: TriggerType | null
[src]

Specifies the type of flow trigger. This can be OnDemand, Scheduled, or Event.