Class: Aws::GameLift::Types::GameSessionDetail

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

Overview

A game session's properties plus the protection policy currently in force.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#game_sessionTypes::GameSession

Object that describes a game session.

Returns:



6171
6172
6173
6174
6175
6176
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 6171

class GameSessionDetail < Struct.new(
  :game_session,
  :protection_policy)
  SENSITIVE = []
  include Aws::Structure
end

#protection_policyString

Current status of protection for the game session.

  • NoProtection -- The game session can be terminated during a scale-down event.

  • FullProtection -- If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

Returns:

  • (String)


6171
6172
6173
6174
6175
6176
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 6171

class GameSessionDetail < Struct.new(
  :game_session,
  :protection_policy)
  SENSITIVE = []
  include Aws::Structure
end