Class: Aws::Mobile::Types::ListProjectsRequest

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

Overview

Request structure used to request projects list in AWS Mobile Hub.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

Maximum number of records to list in a single response.

Returns:

  • (Integer)


412
413
414
415
416
417
# File 'gems/aws-sdk-mobile/lib/aws-sdk-mobile/types.rb', line 412

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

#next_tokenString

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

Returns:

  • (String)


412
413
414
415
416
417
# File 'gems/aws-sdk-mobile/lib/aws-sdk-mobile/types.rb', line 412

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