Describe VPCs operation
The Describe VPCs operation enables you to retrieve information about your VPCs.
You can filter the results to return information only about those VPCs that match the criteria that you specify. For example, you could get information only about VPCs whose state is available. Also, you can specify multiple values for the filter. For example, the VPC uses one of several sets of DHCP options and the state of the VPC is available. However, at least one of the specified values must match a VPC to obtain results.
The result includes information for a particular VPC only if it matches all the specified filters. If there is no match, no special message is returned; the response is empty.
You can use wildcard characters with the filters:
- Use the asterisk (*) to match any number of characters.
- Use the question mark (?) to match a single character.
To escape a special character or metacharacter that has a special meaning in searches, precede the special character with a backslash (\ ).
The following table shows the available filters.
Filter Name | Description |
---|---|
cidr | Specifies the CIDR block of the VPC |
dchp-options-id | Specifies the ID for a set of DHCP options |
state | Specifies the state of the VPC |
tag-key | Species the key assigned to a resource |
tag-value | Specifies the value of the tag assigned to the resource |
tag:key | Filters the results based on a specific tag-value combination |
vpc-id | Specifies the ID of the VPC |
The following figure shows a sample <items> XML element for the Describe VPCs operation.
Sample <items> XML element for the Describe VPCs operation
<item>
<parameters>
<!--Optional:-->
<vpc-set>
<!--Zero or more repetition-->
<item>
<vpc-id></vpc-id>
</item>
</vpc-set>
<!--Optional:-->
<filter-set>
<!--Zero or more repetition-->
<item>
<name></name>
<value-set>
<!--Zero or more repetition-->
<item>
<value></value>
</item>
</value-set>
</item>
</filter-set>
</parameters>
</item>
</items>
The following table describes the elements for this adapter request.
Adapter request elements for the Describe VPCs operation
Element | Definition | Required |
---|---|---|
<wsdl-location> | Specifies the target Web Service Description Language (WSDL) URL for Amazon EC2 | Conditional:
|
<endpoint-address> | Specifies the web service endpoint for the adapter to use while performing operations on Amazon EC2 instances across different regions | No |
<signature-properties> | Specifies the mode for signing the adapter request | Conditional:
|
<operation-name> | Contains the name of the operation: describe-vpcs | Yes |
<parameters> | Contains the elements required to execute the operation | Yes |
<vpc-set> | Specifies the details of the VPC IDs whose information you want to retrieve | No |
<filter-set> | Specifies the details of the filter that is used to retrieve specific information | No |
The following figure shows a sample adapter request for the Describe VPCs operation using cidr as a filter.
Sample adapter request for the Describe VPCs operation
<wsdl-location>http://ec2.amazonaws.com/doc/2011-02-28/</wsdl-location>
<endpoint-address>http://us-east-1.ec2.amazonaws.com/</endpoint-address>
<signature-properties mode = "key-files">
<private-key-file>C:\Security\
pk-MJ5GIUNLM2XJ3VRJSYTKOFDWILELDQHB.PEM</private-key-file>
<certificate-file>C:\Security\
cert-MJ5GIUNLM2XJ3VRJSYTKOFDWILELDQHB.PEM</certificate-file>
</signature-properties>
<operation-name>describe-vpcs</operation-name>
<parameters>
<vpc-set>
<item>
<vpc-id>vpc-b950e6d0</vpc-id>
</item>
</vpc-set>
<filter-set>
<item>
<name>cidr</name>
<value-set>
<item>
<value>10.0.0.0/16</value>
</item>
</value-set>
</item>
</filter-set>
</parameters>
</amazon-ec2-request>
The following figure shows the response for the sample Describe VPCs operation using cidr as a filter.
Sample adapter response for the Describe VPCs operation
<metadata>
<status>success</status>
</metadata>
<DescribeVpcsResponse>
<requestId>f4338ee0-8a41-4fdc-a081-f197cb78d1d4</requestId>
<vpcSet>
<item>
<vpcId>vpc-b950e6d0</vpcId>
<state>available</state>
<cidrBlock>10.0.0.0/16</cidrBlock>
<dhcpOptionsId>dopt-5eac8937</dhcpOptionsId>
<instanceTenancy>default</instanceTenancy>
</item>
</vpcSet>
</DescribeVpcsResponse>
</amazon-ec2-response>
The following figure shows a sample adapter request for the Describe VPCs operation using state as a filter.
<wsdl-location>http://ec2.amazonaws.com/doc/2011-02-28/</wsdl-location>
<endpoint-address>http://us-east-1.ec2.amazonaws.com/</endpoint-address>
<signature-properties mode = "key-files">
<private-key-file>C:\Security\
pk-MJ5GIUNLM2XJ3VRJSYTKOFDWILELDQHB.PEM</private-key-file>
<certificate-file>C:\Security\
cert-MJ5GIUNLM2XJ3VRJSYTKOFDWILELDQHB.PEM</certificate-file>
</signature-properties>
<operation-name>describe-vpcs</operation-name>
<parameters>
<filter-set>
<item>
<name>state</name>
<value-set>
<item>
<value>available</value>
</item>
</value-set>
</item>
</filter-set>
</parameters>
</amazon-ec2-request>
The following figure shows the response for the sample Describe VPCs operation using state as a filter
<metadata>
<status>success</status>
</metadata>
<DescribeVpcsResponse>
<requestId>f4338ee0-8a41-4fdc-a081-f197cb78d1d4</requestId>
<vpcSet>
<item>
<vpcId>vpc-b950e6d0</vpcId>
<state>available</state>
<cidrBlock>10.0.0.0/16</cidrBlock>
<dhcpOptionsId>dopt-5eac8937</dhcpOptionsId>
<instanceTenancy>default</instanceTenancy>
</item>
</vpcSet>
</DescribeVpcsResponse>
</amazon-ec2-response>
The following figure shows a sample adapter request for the Describe VPCs operation using tag-key as a filter.
<wsdl-location>http://ec2.amazonaws.com/doc/2011-02-28/</wsdl-location>
<endpoint-address>http://us-east-1.ec2.amazonaws.com/</endpoint-address>
<signature-properties mode = "key-files">
<private-key-file>C:\Security\
pk-MJ5GIUNLM2XJ3VRJSYTKOFDWILELDQHB.PEM</private-key-file>
<certificate-file>C:\Security\
cert-MJ5GIUNLM2XJ3VRJSYTKOFDWILELDQHB.PEM</certificate-file>
</signature-properties>
<operation-name>describe-vpcs</operation-name>
<parameters>
<filter-set>
<item>
<name>tag-key</name>
<value-set>
<item>
<value>Name</value>
</item>
</value-set>
</item>
</filter-set>
</parameters>
</amazon-ec2-request>
The following figure shows the response for the sample Describe VPCs operation using tag-ey as a filter.
<metadata>
<status>success</status>
</metadata>
<DescribeVpcsResponse>
<requestId>f4338ee0-8a41-4fdc-a081-f197cb78d1d4</requestId>
<vpcSet>
<item>
<vpcId>vpc-b950e6d0</vpcId>
<state>available</state>
<cidrBlock>10.0.0.0/16</cidrBlock>
<dhcpOptionsId>dopt-5eac8937</dhcpOptionsId>
<instanceTenancy>default</instanceTenancy>
</item>
</vpcSet>
</DescribeVpcsResponse>
</amazon-ec2-response>