Class: Aws::GameLift::Types::FleetCapacity

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-gamelift/types.rb

Overview

Information about the fleet’s capacity. Fleet capacity is measured in EC2 instances. By default, new fleets have a capacity of one instance, but can be updated as needed. The maximum number of instances for a fleet is determined by the fleet’s instance type.

Fleet-related operations include:

  • CreateFleet

  • ListFleets

  • DeleteFleet

  • Describe fleets:

    • DescribeFleetAttributes

    • DescribeFleetCapacity

    • DescribeFleetPortSettings

    • DescribeFleetUtilization

    • DescribeRuntimeConfiguration

    • DescribeEC2InstanceLimits

    • DescribeFleetEvents

  • Update fleets:

    • UpdateFleetAttributes

    • UpdateFleetCapacity

    • UpdateFleetPortSettings

    • UpdateRuntimeConfiguration

  • Manage fleet actions:

    • StartFleetActions

    • StopFleetActions

Instance Attribute Summary collapse

Instance Attribute Details

#fleet_idString

Unique identifier for a fleet.

Returns:

  • (String)


3109
3110
3111
3112
3113
3114
# File 'lib/aws-sdk-gamelift/types.rb', line 3109

class FleetCapacity < Struct.new(
  :fleet_id,
  :instance_type,
  :instance_counts)
  include Aws::Structure
end

#instance_countsTypes::EC2InstanceCounts

Current status of fleet capacity.



3109
3110
3111
3112
3113
3114
# File 'lib/aws-sdk-gamelift/types.rb', line 3109

class FleetCapacity < Struct.new(
  :fleet_id,
  :instance_type,
  :instance_counts)
  include Aws::Structure
end

#instance_typeString

Name of an EC2 instance type that is supported in Amazon GameLift. A fleet instance type determines the computing resources of each instance in the fleet, including CPU, memory, storage, and networking capacity. Amazon GameLift supports the following EC2 instance types. See [Amazon EC2 Instance Types] for detailed descriptions.

[1]: aws.amazon.com/ec2/instance-types/

Returns:

  • (String)


3109
3110
3111
3112
3113
3114
# File 'lib/aws-sdk-gamelift/types.rb', line 3109

class FleetCapacity < Struct.new(
  :fleet_id,
  :instance_type,
  :instance_counts)
  include Aws::Structure
end