/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the gamelift-2015-10-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.GameLift.Model { /// /// Container for the parameters to the DescribeEC2InstanceLimits operation. /// Retrieves the instance limits and current utilization for an Amazon Web Services Region /// or location. Instance limits control the number of instances, per instance type, per /// location, that your Amazon Web Services account can use. Learn more at Amazon /// EC2 Instance Types. The information returned includes the maximum number of instances /// allowed and your account's current usage across all fleets. This information can affect /// your ability to scale your Amazon GameLift fleets. You can request a limit increase /// for your account by using the Service limits page in the Amazon GameLift console. /// /// /// /// Instance limits differ based on whether the instances are deployed in a fleet's home /// Region or in a remote location. For remote locations, limits also differ based on /// the combination of home Region and remote location. All requests must specify an Amazon /// Web Services Region (either explicitly or as your default settings). To get the limit /// for a remote location, you must also specify the location. For example, the following /// requests all return different results: /// /// /// /// This operation can be used in the following ways: /// /// /// /// If successful, an EC2InstanceLimits object is returned with limits and /// usage data for each requested instance type. /// /// /// /// Learn more /// /// /// /// Setting /// up Amazon GameLift fleets /// /// public partial class DescribeEC2InstanceLimitsRequest : AmazonGameLiftRequest { private EC2InstanceType _ec2InstanceType; private string _location; /// /// Gets and sets the property EC2InstanceType. /// /// Name of an Amazon 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. Do not specify a value for this parameter /// to retrieve limits for all instance types. /// /// public EC2InstanceType EC2InstanceType { get { return this._ec2InstanceType; } set { this._ec2InstanceType = value; } } // Check to see if EC2InstanceType property is set internal bool IsSetEC2InstanceType() { return this._ec2InstanceType != null; } /// /// Gets and sets the property Location. /// /// The name of a remote location to request instance limits for, in the form of an Amazon /// Web Services Region code such as us-west-2. /// /// [AWSProperty(Min=1, Max=64)] public string Location { get { return this._location; } set { this._location = value; } } // Check to see if Location property is set internal bool IsSetLocation() { return this._location != null; } } }