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

ListStepsInput

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

This input determines which steps to list.

interface ListStepsInput {
ClusterId: string;
Marker?: string | null;
StepIds?: string[] | null;
StepStates?: StepState[] | null;
}

§Properties

§
ClusterId: string
[src]

The identifier of the cluster for which to list the steps.

§
Marker?: string | null
[src]

The maximum number of steps that a single ListSteps action returns is 50. To return a longer list of steps, use multiple ListSteps actions along with the Marker parameter, which is a pagination token that indicates the next set of results to retrieve.

§
StepIds?: string[] | null
[src]

The filter to limit the step list based on the identifier of the steps. You can specify a maximum of ten Step IDs. The character constraint applies to the overall length of the array.

§
StepStates?: StepState[] | null
[src]

The filter to limit the step list based on certain states.