You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::GameLift::Types::UpdateFleetCapacityInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::UpdateFleetCapacityInput
- Defined in:
- (unknown)
Overview
When passing UpdateFleetCapacityInput as input to an Aws::Client method, you can use a vanilla Hash:
{
fleet_id: "FleetIdOrArn", # required
desired_instances: 1,
min_size: 1,
max_size: 1,
}
Represents the input for a request operation.
Instance Attribute Summary collapse
-
#desired_instances ⇒ Integer
Number of EC2 instances you want this fleet to host.
-
#fleet_id ⇒ String
A unique identifier for a fleet to update capacity for.
-
#max_size ⇒ Integer
The maximum value allowed for the fleet\'s instance count.
-
#min_size ⇒ Integer
The minimum value allowed for the fleet\'s instance count.
Instance Attribute Details
#desired_instances ⇒ Integer
Number of EC2 instances you want this fleet to host.
#fleet_id ⇒ String
A unique identifier for a fleet to update capacity for. You can use either the fleet ID or ARN value.
#max_size ⇒ Integer
The maximum value allowed for the fleet\'s instance count. Default if not set is 1.
#min_size ⇒ Integer
The minimum value allowed for the fleet\'s instance count. Default if not set is 0.