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

ListBuildsInput

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

§Properties

§
nextToken?: string | null
[src]

During a previous call, if there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.

§
sortOrder?: SortOrderType | null
[src]

The order to list build IDs. Valid values include:

  • ASCENDING: List the build IDs in ascending order by build ID.
  • DESCENDING: List the build IDs in descending order by build ID.