Class: Aws::Mobile::Types::ListProjectsResult

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

Overview

Result structure used for requests to list projects in AWS Mobile Hub.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

Pagination token. Set to null to start listing records from start. If non-null pagination token is returned in a result, then pass its value in here in another request to list more entries.

Returns:

  • (String)


433
434
435
436
437
438
# File 'gems/aws-sdk-mobile/lib/aws-sdk-mobile/types.rb', line 433

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

#projectsArray<Types::ProjectSummary>

List of projects.

Returns:



433
434
435
436
437
438
# File 'gems/aws-sdk-mobile/lib/aws-sdk-mobile/types.rb', line 433

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