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

ListActionExecutionsInput

import type { ListActionExecutionsInput } from "https://aws-api.deno.dev/v0.3/services/codepipeline.ts?docs=full";
interface ListActionExecutionsInput {
filter?: ActionExecutionFilter | null;
maxResults?: number | null;
nextToken?: string | null;
pipelineName: string;
}

§Properties

§

Input information used to filter action execution history.

§
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. Action execution history is retained for up to 12 months, based on action execution start times. Default value is 100.

Note: Detailed execution history is available for executions run on or after February 21, 2019.

§
nextToken?: string | null
[src]

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

§
pipelineName: string
[src]

The name of the pipeline for which you want to list action execution history.