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

SetStatusInput

import type { SetStatusInput } from "https://aws-api.deno.dev/v0.3/services/datapipeline.ts?docs=full";

Contains the parameters for SetStatus.

interface SetStatusInput {
objectIds: string[];
pipelineId: string;
status: string;
}

§Properties

§
objectIds: string[]
[src]

The IDs of the objects. The corresponding objects can be either physical or components, but not a mix of both types.

§
pipelineId: string
[src]

The ID of the pipeline that contains the objects.

§
status: string
[src]

The status to be set on all the objects specified in objectIds. For components, use PAUSE or RESUME. For instances, use TRY_CANCEL, RERUN, or MARK_FINISHED.