Class: Aws::CodeBuild::Types::ListProjectsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::ListProjectsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#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.
-
#projects ⇒ Array<String>
The list of build project names, with each build project name representing a single build project.
Instance Attribute Details
#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.
3451 3452 3453 3454 3455 3456 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3451 class ListProjectsOutput < Struct.new( :next_token, :projects) SENSITIVE = [] include Aws::Structure end |
#projects ⇒ Array<String>
The list of build project names, with each build project name representing a single build project.
3451 3452 3453 3454 3455 3456 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3451 class ListProjectsOutput < Struct.new( :next_token, :projects) SENSITIVE = [] include Aws::Structure end |