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

ListPipelinesInput

import type { ListPipelinesInput } from "https://aws-api.deno.dev/v0.4/services/codepipeline.ts?docs=full";

Represents the input of a ListPipelines action.

interface ListPipelinesInput {
maxResults?: number | null;
nextToken?: string | null;
}

§Properties

§
maxResults?: number | null
[src]

The maximum number of pipelines to return in a single call. To retrieve the remaining pipelines, make another call with the returned nextToken value. The minimum value you can specify is 1. The maximum accepted value is 1000.

§
nextToken?: string | null
[src]

An identifier that was returned from the previous list pipelines call. It can be used to return the next set of pipelines in the list.