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

ListBuildBatchesInput

import type { ListBuildBatchesInput } from "https://aws-api.deno.dev/v0.3/services/codebuild.ts?docs=full";
interface ListBuildBatchesInput {
filter?: BuildBatchFilter | null;
maxResults?: number | null;
nextToken?: string | null;
sortOrder?: SortOrderType | null;
}

§Properties

§
filter?: BuildBatchFilter | null
[src]

A BuildBatchFilter object that specifies the filters for the search.

§
maxResults?: number | null
[src]

The maximum number of results to return.

§
nextToken?: string | null
[src]

The nextToken value returned from a previous call to ListBuildBatches. This specifies the next item to return. To return the beginning of the list, exclude this parameter.

§
sortOrder?: SortOrderType | null
[src]

Specifies the sort order of the returned items. Valid values include:

  • ASCENDING: List the batch build identifiers in ascending order by identifier.
  • DESCENDING: List the batch build identifiers in descending order by identifier.