Class: Aws::Mobile::Types::ListProjectsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Mobile::Types::ListProjectsResult
- Includes:
- Structure
- Defined in:
- 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
-
#next_token ⇒ String
Pagination token.
-
#projects ⇒ Array<Types::ProjectSummary>
List of projects.
Instance Attribute Details
#next_token ⇒ String
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.
433 434 435 436 437 438 |
# File 'lib/aws-sdk-mobile/types.rb', line 433 class ListProjectsResult < Struct.new( :projects, :next_token) SENSITIVE = [] include Aws::Structure end |
#projects ⇒ Array<Types::ProjectSummary>
List of projects.
433 434 435 436 437 438 |
# File 'lib/aws-sdk-mobile/types.rb', line 433 class ListProjectsResult < Struct.new( :projects, :next_token) SENSITIVE = [] include Aws::Structure end |