Class: Aws::GameSparks::Types::ListSnapshotsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameSparks::Types::ListSnapshotsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamesparks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#game_name ⇒ String
The name of the game.
-
#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
#game_name ⇒ String
The name of the game.
1098 1099 1100 1101 1102 1103 1104 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 1098 class ListSnapshotsRequest < Struct.new( :game_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return.
Use this parameter with NextToken to get results as a set of sequential pages.
1098 1099 1100 1101 1102 1103 1104 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 1098 class ListSnapshotsRequest < Struct.new( :game_name, :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.
1098 1099 1100 1101 1102 1103 1104 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 1098 class ListSnapshotsRequest < Struct.new( :game_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |