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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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:



6692
6693
6694
6695
6696
6697
# File 'lib/aws-sdk-gamelift/types.rb', line 6692

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)


6692
6693
6694
6695
6696
6697
# File 'lib/aws-sdk-gamelift/types.rb', line 6692

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