Class: Aws::GameLift::Types::ReplicaContainerGroupCounts
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::ReplicaContainerGroupCounts
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
**This data type is used with the Amazon GameLift containers feature, which is currently in public preview.**
The number and status of replica container groups that are deployed across a fleet with compute type ‘CONTAINER`. This information, combined with the number of server processes being hosted per container group (see `RuntimeConfiguration`), tells you how many game sessions the fleet is currently capable of hosting concurrently.
**Returned by:** DescribeFleetCapacity, DescribeFleetLocationCapacity
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 have not yet registered.
-
#terminating ⇒ Integer
The number of container groups that are in the process of shutting down.
Instance Attribute Details
#active ⇒ Integer
The number of container groups that have active game sessions.
8860 8861 8862 8863 8864 8865 8866 8867 |
# File 'lib/aws-sdk-gamelift/types.rb', line 8860 class ReplicaContainerGroupCounts < Struct.new( :pending, :active, :idle, :terminating) SENSITIVE = [] include Aws::Structure end |
#idle ⇒ Integer
The number of container groups that have no active game sessions.
8860 8861 8862 8863 8864 8865 8866 8867 |
# File 'lib/aws-sdk-gamelift/types.rb', line 8860 class ReplicaContainerGroupCounts < Struct.new( :pending, :active, :idle, :terminating) SENSITIVE = [] include Aws::Structure end |
#pending ⇒ Integer
The number of container groups that are starting up but have not yet registered.
8860 8861 8862 8863 8864 8865 8866 8867 |
# File 'lib/aws-sdk-gamelift/types.rb', line 8860 class ReplicaContainerGroupCounts < Struct.new( :pending, :active, :idle, :terminating) SENSITIVE = [] include Aws::Structure end |
#terminating ⇒ Integer
The number of container groups that are in the process of shutting down.
8860 8861 8862 8863 8864 8865 8866 8867 |
# File 'lib/aws-sdk-gamelift/types.rb', line 8860 class ReplicaContainerGroupCounts < Struct.new( :pending, :active, :idle, :terminating) SENSITIVE = [] include Aws::Structure end |