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

ListWorkflowsRequest

import type { ListWorkflowsRequest } from "https://aws-api.deno.dev/v0.4/services/customerprofiles.ts?docs=full";
interface ListWorkflowsRequest {
DomainName: string;
MaxResults?: number | null;
NextToken?: string | null;
QueryEndDate?: Date | number | null;
QueryStartDate?: Date | number | null;
Status?: Status | null;
WorkflowType?: WorkflowType | null;
}

§Properties

§
DomainName: string
[src]

The unique name of the domain.

§
MaxResults?: number | null
[src]

The maximum number of results to return per page.

§
NextToken?: string | null
[src]

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

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

Retrieve workflows ended after timestamp.

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

Retrieve workflows started after timestamp.

§
Status?: Status | null
[src]

Status of workflow execution.

§
WorkflowType?: WorkflowType | null
[src]

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