Class: Aws::GameLift::Types::EC2InstanceLimit
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::GameLift::Types::EC2InstanceLimit
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-gamelift/types.rb
 
Overview
The Amazon GameLift service limits for an Amazon EC2 instance type and current utilization. Amazon GameLift allows Amazon Web Services accounts a maximum number of instances, per instance type, per Amazon Web Services Region or location, for use with Amazon GameLift. You can request an limit increase for your account by using the **Service limits** page in the Amazon GameLift console.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #current_instances  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of instances for the specified type and location that are currently being used by the Amazon Web Services account.
 - 
  
    
      #ec2_instance_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of an Amazon EC2 instance type.
 - 
  
    
      #instance_limit  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of instances that is allowed for the specified instance type and location.
 - 
  
    
      #location  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An Amazon Web Services Region code, such as ‘us-west-2`.
 
Instance Attribute Details
#current_instances ⇒ Integer
The number of instances for the specified type and location that are currently being used by the Amazon Web Services account.
      4911 4912 4913 4914 4915 4916 4917 4918  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 4911 class EC2InstanceLimit < Struct.new( :ec2_instance_type, :current_instances, :instance_limit, :location) SENSITIVE = [] include Aws::Structure end  | 
  
#ec2_instance_type ⇒ String
The name of an Amazon EC2 instance type. See [Amazon Elastic Compute Cloud Instance Types] for detailed descriptions.
      4911 4912 4913 4914 4915 4916 4917 4918  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 4911 class EC2InstanceLimit < Struct.new( :ec2_instance_type, :current_instances, :instance_limit, :location) SENSITIVE = [] include Aws::Structure end  | 
  
#instance_limit ⇒ Integer
The number of instances that is allowed for the specified instance type and location.
      4911 4912 4913 4914 4915 4916 4917 4918  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 4911 class EC2InstanceLimit < Struct.new( :ec2_instance_type, :current_instances, :instance_limit, :location) SENSITIVE = [] include Aws::Structure end  | 
  
#location ⇒ String
An Amazon Web Services Region code, such as ‘us-west-2`.
      4911 4912 4913 4914 4915 4916 4917 4918  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 4911 class EC2InstanceLimit < Struct.new( :ec2_instance_type, :current_instances, :instance_limit, :location) SENSITIVE = [] include Aws::Structure end  |