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.3/services/customerprofiles.ts?docs=full";

The configurations that control how Customer Profiles retrieves data from the source, Amazon AppFlow. Customer Profiles uses this information to create an AppFlow flow on behalf of customers.

interface FlowDefinition {
Description?: string | null;
FlowName: string;
KmsArn: string;
SourceFlowConfig: SourceFlowConfig;
Tasks: Task[];
TriggerConfig: TriggerConfig;
}

§Properties

§
Description?: string | null
[src]

A description of the flow you want to create.

§
FlowName: string
[src]

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

§
KmsArn: string
[src]

The Amazon Resource Name of the AWS Key Management Service (KMS) key you provide for encryption.

§
SourceFlowConfig: SourceFlowConfig
[src]

The configuration that controls how Customer Profiles retrieves data from the source.

§
Tasks: Task[]
[src]

A list of tasks that Customer Profiles performs while transferring the data in the flow run.

§
TriggerConfig: TriggerConfig
[src]

The trigger settings that determine how and when the flow runs.