Class: Aws::GameLift::Types::GameServerContainerGroupCounts
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::GameServerContainerGroupCounts
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
The number and status of game server container groups that are deployed across a container fleet. Combine this count with the number of server processes that each game server container group runs to learn how many game sessions the fleet is capable of hosting concurrently. For example, if a fleet has 50 game server container groups, and the game server container in each group runs 1 game server process, then the fleet has the capacity to run host 50 game sessions at a time.
**Returned by:** [docs.aws.amazon.com/gamelift/latest/apireference/API_DescribeFleetCapacity.html][1],
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#active ⇒ Integer
The number of container groups that have active game sessions.
-
#idle ⇒ Integer
The number of container groups that have no active game sessions.
-
#pending ⇒ Integer
The number of container groups that are starting up but haven’t yet registered.
-
#terminating ⇒ Integer
The number of container groups that are in the process of shutting down.
Instance Attribute Details
permalink #active ⇒ Integer
The number of container groups that have active game sessions.
6317 6318 6319 6320 6321 6322 6323 6324 |
# File 'lib/aws-sdk-gamelift/types.rb', line 6317 class GameServerContainerGroupCounts < Struct.new( :pending, :active, :idle, :terminating) SENSITIVE = [] include Aws::Structure end |
permalink #idle ⇒ Integer
The number of container groups that have no active game sessions.
6317 6318 6319 6320 6321 6322 6323 6324 |
# File 'lib/aws-sdk-gamelift/types.rb', line 6317 class GameServerContainerGroupCounts < Struct.new( :pending, :active, :idle, :terminating) SENSITIVE = [] include Aws::Structure end |
permalink #pending ⇒ Integer
The number of container groups that are starting up but haven’t yet registered.
6317 6318 6319 6320 6321 6322 6323 6324 |
# File 'lib/aws-sdk-gamelift/types.rb', line 6317 class GameServerContainerGroupCounts < Struct.new( :pending, :active, :idle, :terminating) SENSITIVE = [] include Aws::Structure end |
permalink #terminating ⇒ Integer
The number of container groups that are in the process of shutting down.
6317 6318 6319 6320 6321 6322 6323 6324 |
# File 'lib/aws-sdk-gamelift/types.rb', line 6317 class GameServerContainerGroupCounts < Struct.new( :pending, :active, :idle, :terminating) SENSITIVE = [] include Aws::Structure end |