Class: Aws::GameSparks::Types::ListGamesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameSparks::Types::ListGamesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamesparks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return.
-
#next_token ⇒ String
The token that indicates the start of the next sequential page of results.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return.
Use this parameter with NextToken to get results as a set of sequential pages.
992 993 994 995 996 997 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 992 class ListGamesRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token that indicates the start of the next sequential page of results.
Use the token that is returned with a previous call to this operation. To start at the beginning of the result set, do not specify a value.
992 993 994 995 996 997 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 992 class ListGamesRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |