Method: Aws::GameLift::Types::FleetAttributes#instance_type

Defined in:
lib/aws-sdk-gamelift/types.rb

#instance_typeString

The Amazon EC2 instance type that the fleet uses. Instance type determines the computing resources of each instance in the fleet, including CPU, memory, storage, and networking capacity. See [Amazon Elastic Compute Cloud Instance Types] for detailed descriptions. This attribute is used with fleets where ‘ComputeType` is “EC2”.

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

Returns:

  • (String)


5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
# File 'lib/aws-sdk-gamelift/types.rb', line 5565

class FleetAttributes < Struct.new(
  :fleet_id,
  :fleet_arn,
  :fleet_type,
  :instance_type,
  :description,
  :name,
  :creation_time,
  :termination_time,
  :status,
  :build_id,
  :build_arn,
  :script_id,
  :script_arn,
  :server_launch_path,
  :server_launch_parameters,
  :log_paths,
  :new_game_session_protection_policy,
  :operating_system,
  :resource_creation_limit_policy,
  :metric_groups,
  :stopped_actions,
  :instance_role_arn,
  :certificate_configuration,
  :compute_type,
  :anywhere_configuration,
  :instance_role_credentials_provider)
  SENSITIVE = []
  include Aws::Structure
end