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:



4961
4962
4963
4964
4965
4966
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 4961

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)


4961
4962
4963
4964
4965
4966
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 4961

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