Class: Aws::GameLift::Types::GameSessionDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::GameSessionDetail
- 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
-
#game_session ⇒ Types::GameSession
Object that describes a game session.
-
#protection_policy ⇒ String
Current status of protection for the game session.
Instance Attribute Details
#game_session ⇒ Types::GameSession
Object that describes a game session.
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_policy ⇒ String
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.
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 |