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

CancelStepsInput

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

The input argument to the "CancelSteps" operation.

interface CancelStepsInput {
ClusterId: string;
StepCancellationOption?: StepCancellationOption | null;
StepIds: string[];
}

§Properties

§
ClusterId: string
[src]

The ClusterID for the specified steps that will be canceled. Use "RunJobFlow" and "ListClusters" to get ClusterIDs.

§
StepCancellationOption?: StepCancellationOption | null
[src]

The option to choose to cancel RUNNING steps. By default, the value is SEND_INTERRUPT.

§
StepIds: string[]
[src]

The list of StepIDs to cancel. Use "ListSteps" to get steps and their states for the specified cluster.