Class: Aws::CodeBuild::Types::ListBuildsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::ListBuildsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ids ⇒ Array<String>
A list of build IDs, with each build ID representing a single build.
-
#next_token ⇒ String
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.
Instance Attribute Details
#ids ⇒ Array<String>
A list of build IDs, with each build ID representing a single build.
3292 3293 3294 3295 3296 3297 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3292 class ListBuildsOutput < Struct.new( :ids, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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.
3292 3293 3294 3295 3296 3297 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3292 class ListBuildsOutput < Struct.new( :ids, :next_token) SENSITIVE = [] include Aws::Structure end |