You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CodeBuild::Types::ListBuildBatchesInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListBuildBatchesInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  filter: {
    status: "SUCCEEDED", # accepts SUCCEEDED, FAILED, FAULT, TIMED_OUT, IN_PROGRESS, STOPPED
  },
  max_results: 1,
  sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
  next_token: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#filterTypes::BuildBatchFilter

A BuildBatchFilter object that specifies the filters for the search.

Returns:

#max_resultsInteger

The maximum number of results to return.

Returns:

  • (Integer)

    The maximum number of results to return.

#next_tokenString

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.

Returns:

  • (String)

    The nextToken value returned from a previous call to ListBuildBatches.

#sort_orderString

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.

    Possible values:

    • ASCENDING
    • DESCENDING

Returns:

  • (String)

    Specifies the sort order of the returned items.