Class: Aws::GameLift::Types::ReplicaContainerGroupCounts

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#activeInteger

The number of container groups that have active game sessions.

Returns:

  • (Integer)


8749
8750
8751
8752
8753
8754
8755
8756
# File 'lib/aws-sdk-gamelift/types.rb', line 8749

class ReplicaContainerGroupCounts < Struct.new(
  :pending,
  :active,
  :idle,
  :terminating)
  SENSITIVE = []
  include Aws::Structure
end

#idleInteger

The number of container groups that have no active game sessions.

Returns:

  • (Integer)


8749
8750
8751
8752
8753
8754
8755
8756
# File 'lib/aws-sdk-gamelift/types.rb', line 8749

class ReplicaContainerGroupCounts < Struct.new(
  :pending,
  :active,
  :idle,
  :terminating)
  SENSITIVE = []
  include Aws::Structure
end

#pendingInteger

The number of container groups that are starting up but have not yet registered.

Returns:

  • (Integer)


8749
8750
8751
8752
8753
8754
8755
8756
# File 'lib/aws-sdk-gamelift/types.rb', line 8749

class ReplicaContainerGroupCounts < Struct.new(
  :pending,
  :active,
  :idle,
  :terminating)
  SENSITIVE = []
  include Aws::Structure
end

#terminatingInteger

The number of container groups that are in the process of shutting down.

Returns:

  • (Integer)


8749
8750
8751
8752
8753
8754
8755
8756
# File 'lib/aws-sdk-gamelift/types.rb', line 8749

class ReplicaContainerGroupCounts < Struct.new(
  :pending,
  :active,
  :idle,
  :terminating)
  SENSITIVE = []
  include Aws::Structure
end