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

GetWorkflowResponse

import type { GetWorkflowResponse } from "https://aws-api.deno.dev/v0.4/services/customerprofiles.ts?docs=full";
interface GetWorkflowResponse {
Attributes?: WorkflowAttributes | null;
ErrorDescription?: string | null;
LastUpdatedAt?: Date | number | null;
Metrics?: WorkflowMetrics | null;
StartDate?: Date | number | null;
Status?: Status | null;
WorkflowId?: string | null;
WorkflowType?: WorkflowType | null;
}

§Properties

§
Attributes?: WorkflowAttributes | null
[src]

Attributes provided for workflow execution.

§
ErrorDescription?: string | null
[src]

Workflow error messages during execution (if any).

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

The timestamp that represents when workflow execution last updated.

§
Metrics?: WorkflowMetrics | null
[src]

Workflow specific execution metrics.

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

The timestamp that represents when workflow execution started.

§
Status?: Status | null
[src]

Status of workflow execution.

§
WorkflowId?: string | null
[src]

Unique identifier for the workflow.

§
WorkflowType?: WorkflowType | null
[src]

The type of workflow. The only supported value is APPFLOW_INTEGRATION.