Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.ec2.model
Class DescribeInternetGatewaysRequest

java.lang.Object
  extended by com.amazonaws.AmazonWebServiceRequest
      extended by com.amazonaws.services.ec2.model.DescribeInternetGatewaysRequest
All Implemented Interfaces:
Serializable

public class DescribeInternetGatewaysRequest
extends AmazonWebServiceRequest
implements Serializable

Container for the parameters to the DescribeInternetGateways operation.

Gives you information about your Internet gateways. You can filter the results to return information only about Internet gateways that match criteria you specify. For example, you could get information only about gateways with particular tags. The Internet gateway must match at least one of the specified values for it to be included in the results.

You can specify multiple filters (e.g., the Internet gateway is attached to a particular VPC and is tagged with a particular value). The result includes information for a particular Internet gateway only if the gateway matches all your filters. If there's no match, no special message is returned; the response is simply empty.

You can use wildcards with the filter values: an asterisk matches zero or more characters, and ? matches exactly one character. You can escape special characters using a backslash before the character. For example, a value of \*amazon\?\\ searches for the literal string *amazon?\ .

See Also:
AmazonEC2.describeInternetGateways(DescribeInternetGatewaysRequest), Serialized Form

Constructor Summary
DescribeInternetGatewaysRequest()
           
 
Method Summary
 boolean equals(Object obj)
           
 List<Filter> getFilters()
          A list of filters used to match properties for Internet Gateways.
 List<String> getInternetGatewayIds()
          One or more Internet gateway IDs.
 int hashCode()
           
 void setFilters(Collection<Filter> filters)
          A list of filters used to match properties for Internet Gateways.
 void setInternetGatewayIds(Collection<String> internetGatewayIds)
          One or more Internet gateway IDs.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 DescribeInternetGatewaysRequest withFilters(Collection<Filter> filters)
          A list of filters used to match properties for Internet Gateways.
 DescribeInternetGatewaysRequest withFilters(Filter... filters)
          A list of filters used to match properties for Internet Gateways.
 DescribeInternetGatewaysRequest withInternetGatewayIds(Collection<String> internetGatewayIds)
          One or more Internet gateway IDs.
 DescribeInternetGatewaysRequest withInternetGatewayIds(String... internetGatewayIds)
          One or more Internet gateway IDs.
 
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyPrivateRequestParameters, getRequestClientOptions, getRequestCredentials, setRequestCredentials
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DescribeInternetGatewaysRequest

public DescribeInternetGatewaysRequest()
Method Detail

getInternetGatewayIds

public List<String> getInternetGatewayIds()
One or more Internet gateway IDs.

Returns:
One or more Internet gateway IDs.

setInternetGatewayIds

public void setInternetGatewayIds(Collection<String> internetGatewayIds)
One or more Internet gateway IDs.

Parameters:
internetGatewayIds - One or more Internet gateway IDs.

withInternetGatewayIds

public DescribeInternetGatewaysRequest withInternetGatewayIds(String... internetGatewayIds)
One or more Internet gateway IDs.

Returns a reference to this object so that method calls can be chained together.

Parameters:
internetGatewayIds - One or more Internet gateway IDs.
Returns:
A reference to this updated object so that method calls can be chained together.

withInternetGatewayIds

public DescribeInternetGatewaysRequest withInternetGatewayIds(Collection<String> internetGatewayIds)
One or more Internet gateway IDs.

Returns a reference to this object so that method calls can be chained together.

Parameters:
internetGatewayIds - One or more Internet gateway IDs.
Returns:
A reference to this updated object so that method calls can be chained together.

getFilters

public List<Filter> getFilters()
A list of filters used to match properties for Internet Gateways. For a complete reference to the available filter keys for this operation, see the Amazon EC2 API reference.

Returns:
A list of filters used to match properties for Internet Gateways. For a complete reference to the available filter keys for this operation, see the Amazon EC2 API reference.

setFilters

public void setFilters(Collection<Filter> filters)
A list of filters used to match properties for Internet Gateways. For a complete reference to the available filter keys for this operation, see the Amazon EC2 API reference.

Parameters:
filters - A list of filters used to match properties for Internet Gateways. For a complete reference to the available filter keys for this operation, see the Amazon EC2 API reference.

withFilters

public DescribeInternetGatewaysRequest withFilters(Filter... filters)
A list of filters used to match properties for Internet Gateways. For a complete reference to the available filter keys for this operation, see the Amazon EC2 API reference.

Returns a reference to this object so that method calls can be chained together.

Parameters:
filters - A list of filters used to match properties for Internet Gateways. For a complete reference to the available filter keys for this operation, see the Amazon EC2 API reference.
Returns:
A reference to this updated object so that method calls can be chained together.

withFilters

public DescribeInternetGatewaysRequest withFilters(Collection<Filter> filters)
A list of filters used to match properties for Internet Gateways. For a complete reference to the available filter keys for this operation, see the Amazon EC2 API reference.

Returns a reference to this object so that method calls can be chained together.

Parameters:
filters - A list of filters used to match properties for Internet Gateways. For a complete reference to the available filter keys for this operation, see the Amazon EC2 API reference.
Returns:
A reference to this updated object so that method calls can be chained together.

toString

public String toString()
Returns a string representation of this object; useful for testing and debugging.

Overrides:
toString in class Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.