Class: Aws::GameSparks::Types::ListSnapshotsResult

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-gamesparks/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

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.

Returns:

  • (String)


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

#snapshotsArray<Types::SnapshotSummary>

A list of snapshot summaries. You can use the returned snapshot IDs in the ‘UpdateSnapshot` and `GetSnapshot` operations.

Returns:



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