Class: Aws::CodeBuild::Types::ListProjectsOutput

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#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)


3108
3109
3110
3111
3112
3113
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 3108

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

#projectsArray<String>

The list of build project names, with each build project name representing a single build project.

Returns:

  • (Array<String>)


3108
3109
3110
3111
3112
3113
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 3108

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