/* * 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 DescribeAddresses operation. /// Describes the specified Elastic IP addresses or all of your Elastic IP addresses. /// public partial class DescribeAddressesRequest : AmazonEC2Request { private List _allocationIds = new List(); private List _filters = new List(); private List _publicIps = new List(); /// /// Gets and sets the property AllocationIds. /// /// Information about the allocation IDs. /// /// public List AllocationIds { get { return this._allocationIds; } set { this._allocationIds = value; } } // Check to see if AllocationIds property is set internal bool IsSetAllocationIds() { return this._allocationIds != null && this._allocationIds.Count > 0; } /// /// Gets and sets the property Filters. /// /// One or more filters. Filter names and values are case-sensitive. /// ///
  • /// /// allocation-id - The allocation ID for the address. /// ///
  • /// /// association-id - The association ID for the address. /// ///
  • /// /// instance-id - The ID of the instance the address is associated with, /// if any. /// ///
  • /// /// network-border-group - A unique set of Availability Zones, Local Zones, /// or Wavelength Zones from where Amazon Web Services advertises IP addresses. /// ///
  • /// /// network-interface-id - The ID of the network interface that the address /// is associated with, if any. /// ///
  • /// /// network-interface-owner-id - The Amazon Web Services account ID of the /// owner. /// ///
  • /// /// private-ip-address - The private IP address associated with the Elastic /// IP address. /// ///
  • /// /// public-ip - The Elastic IP address, or the carrier IP address. /// ///
  • /// /// tag:<key> - The key/value combination of a tag assigned to the /// resource. Use the tag key in the filter name and the tag value as the filter value. /// For example, to find all resources that have a tag with the key Owner /// and the value TeamA, specify tag:Owner for the filter name /// and TeamA for the filter value. /// ///
  • /// /// tag-key - The key of a tag assigned to the resource. Use this filter /// to find all resources assigned a tag with a specific key, regardless of the tag value. /// ///
///
public List Filters { get { return this._filters; } set { this._filters = value; } } // Check to see if Filters property is set internal bool IsSetFilters() { return this._filters != null && this._filters.Count > 0; } /// /// Gets and sets the property PublicIps. /// /// One or more Elastic IP addresses. /// /// /// /// Default: Describes all your Elastic IP addresses. /// /// public List PublicIps { get { return this._publicIps; } set { this._publicIps = value; } } // Check to see if PublicIps property is set internal bool IsSetPublicIps() { return this._publicIps != null && this._publicIps.Count > 0; } } }