Class: Aws::GameLift::Types::DescribeGameSessionsOutput

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:



2043
2044
2045
2046
2047
# File 'lib/aws-sdk-gamelift/types.rb', line 2043

class DescribeGameSessionsOutput < 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)


2043
2044
2045
2046
2047
# File 'lib/aws-sdk-gamelift/types.rb', line 2043

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