Class: Aws::Mobile::Types::ListBundlesRequest

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

Overview

Request structure to request all available bundles.

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)


369
370
371
372
373
374
# File 'gems/aws-sdk-mobile/lib/aws-sdk-mobile/types.rb', line 369

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

#next_tokenString

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.

Returns:

  • (String)


369
370
371
372
373
374
# File 'gems/aws-sdk-mobile/lib/aws-sdk-mobile/types.rb', line 369

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