Class: Aws::GameLift::Types::SearchGameSessionsOutput

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

Overview

Represents the returned data in response to a request action.

Instance Attribute Summary collapse

Instance Attribute Details

#game_sessionsArray<Types::GameSession>

Collection of objects containing game session properties for each session matching the request.

Returns:



5598
5599
5600
5601
5602
# File 'lib/aws-sdk-gamelift/types.rb', line 5598

class SearchGameSessionsOutput < Struct.new(
  :game_sessions,
  :next_token)
  include Aws::Structure
end

#next_tokenString

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

Returns:

  • (String)


5598
5599
5600
5601
5602
# File 'lib/aws-sdk-gamelift/types.rb', line 5598

class SearchGameSessionsOutput < Struct.new(
  :game_sessions,
  :next_token)
  include Aws::Structure
end