Class: Aws::CodeBuild::Types::ListBuildsOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codebuild/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idsArray<String>

A list of build IDs, with each build ID representing a single build.

Returns:

  • (Array<String>)


2947
2948
2949
2950
2951
2952
# File 'lib/aws-sdk-codebuild/types.rb', line 2947

class ListBuildsOutput < Struct.new(
  :ids,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

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.

Returns:

  • (String)


2947
2948
2949
2950
2951
2952
# File 'lib/aws-sdk-codebuild/types.rb', line 2947

class ListBuildsOutput < Struct.new(
  :ids,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end