Class: Aws::Mobile::Types::ListBundlesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Mobile::Types::ListBundlesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mobile/types.rb
Overview
Request structure to request all available bundles.
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.
369 370 371 372 373 374 |
# File 'lib/aws-sdk-mobile/types.rb', line 369 class ListBundlesRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Pagination token. Set to null to start listing bundles from start. If non-null pagination token is returned in a result, then pass its value in here in another request to list more bundles.
369 370 371 372 373 374 |
# File 'lib/aws-sdk-mobile/types.rb', line 369 class ListBundlesRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |