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

ListPipelineExecutionsInput

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

Represents the input of a ListPipelineExecutions action.

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

§Properties

§
maxResults?: number | null
[src]

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Pipeline history is limited to the most recent 12 months, based on pipeline execution start times. Default value is 100.

§
nextToken?: string | null
[src]

The token that was returned from the previous ListPipelineExecutions call, which can be used to return the next set of pipeline executions in the list.

§
pipelineName: string
[src]

The name of the pipeline for which you want to get execution summary information.