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.
| 6264 6265 6266 6267 6268 6269 | # File 'lib/aws-sdk-gamelift/types.rb', line 6264 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. 
| 6264 6265 6266 6267 6268 6269 | # File 'lib/aws-sdk-gamelift/types.rb', line 6264 class GameSessionDetail < Struct.new( :game_session, :protection_policy) SENSITIVE = [] include Aws::Structure end |