Class: Aws::GameSparks::Types::ListSnapshotsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameSparks::Types::ListSnapshotsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamesparks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The token that indicates the start of the next sequential page of results.
-
#snapshots ⇒ Array<Types::SnapshotSummary>
A list of snapshot summaries.
Instance Attribute Details
#next_token ⇒ String
The token that indicates the start of the next sequential page of results.
Use this value when making the next call to this operation to continue where the last one finished.
1121 1122 1123 1124 1125 1126 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 1121 class ListSnapshotsResult < Struct.new( :next_token, :snapshots) SENSITIVE = [] include Aws::Structure end |
#snapshots ⇒ Array<Types::SnapshotSummary>
A list of snapshot summaries. You can use the returned snapshot IDs in the ‘UpdateSnapshot` and `GetSnapshot` operations.
1121 1122 1123 1124 1125 1126 |
# File 'lib/aws-sdk-gamesparks/types.rb', line 1121 class ListSnapshotsResult < Struct.new( :next_token, :snapshots) SENSITIVE = [] include Aws::Structure end |