Class: Aws::Mobile::Types::ListProjectsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Mobile::Types::ListProjectsRequest
- Includes:
- Structure
- Defined in:
- 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
-
#max_results ⇒ Integer
Maximum number of records to list in a single response.
-
#next_token ⇒ String
Pagination token.
Instance Attribute Details
#max_results ⇒ Integer
Maximum number of records to list in a single response.
412 413 414 415 416 417 |
# File 'lib/aws-sdk-mobile/types.rb', line 412 class ListProjectsRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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.
412 413 414 415 416 417 |
# File 'lib/aws-sdk-mobile/types.rb', line 412 class ListProjectsRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |