/*
* 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 ec2-2016-11-15.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.EC2.Model
{
///
/// Container for the parameters to the DescribeAccountAttributes operation.
/// Describes attributes of your Amazon Web Services account. The following are the supported
/// account attributes:
///
/// -
///
///
default-vpc
: The ID of the default VPC for your account, or none
.
///
/// -
///
///
max-instances
: This attribute is no longer supported. The returned value
/// does not reflect your actual vCPU limit for running On-Demand Instances. For more
/// information, see On-Demand
/// Instance Limits in the Amazon Elastic Compute Cloud User Guide.
///
/// -
///
///
max-elastic-ips
: The maximum number of Elastic IP addresses that you
/// can allocate.
///
/// -
///
///
supported-platforms
: This attribute is deprecated.
///
/// -
///
///
vpc-max-elastic-ips
: The maximum number of Elastic IP addresses that
/// you can allocate.
///
/// -
///
///
vpc-max-security-groups-per-interface
: The maximum number of security
/// groups that you can assign to a network interface.
///
///
///
public partial class DescribeAccountAttributesRequest : AmazonEC2Request
{
private List _attributeNames = new List();
///
/// Gets and sets the property AttributeNames.
///
/// The account attribute names.
///
///
public List AttributeNames
{
get { return this._attributeNames; }
set { this._attributeNames = value; }
}
// Check to see if AttributeNames property is set
internal bool IsSetAttributeNames()
{
return this._attributeNames != null && this._attributeNames.Count > 0;
}
}
}