DescribeVolumes
The DescribeVolumes
operation lists one or more Amazon EBS volumes that
you own, If you do not specify any volumes, Amazon EBS returns all volumes that you own.
For more information about Amazon EBS, see Amazon Elastic Block Store.
Request Parameters
The following table describes the request parameters for
DescribeVolumes
. Parameter names are case
sensitive.
Name | Description | Required |
---|---|---|
|
The ID of the volume to list Type: String Default: Describes all volumes that you own Valid Values: IDs of one or more volumes that you own Constraints: none |
No |
Response Elements
The following table describes the default response tags included
in DescribeVolumes
responses.
Name | Description |
---|---|
|
The ID of the volume Type: xsd:string |
|
The size of the volume, in GiBs Type: xsd:string |
|
Volume state (e.g., Type: xsd:string |
|
Time stamp when volume creation was initiated Type: xsd:dateTime |
|
The ID of the snapshot from which the volume was created Type: xsd:string |
|
Availability zone in which the volume launched Type: xsd:string |
|
Specifies an attachment of a volume to an instance Type: AttachmentSet |
|
The ID of the volume Type: xsd:string Ancestor: item |
|
The ID of the instance Type: xsd:string Ancestor: item |
|
The name of the device Type: xsd:string Ancestor: item |
|
Attachment state (e.g., Type: xsd:string Ancestor: item |
|
Time stamp when the association was created Type: xsd:dateTime Ancestor: item |
|
Availability zone in which the volume is located Type: xsd:string Ancestor: item |
Sample Request
https://ec2.amazonaws.com/ ?Action=DescribeVolumes &...auth parameters...
Sample Response
<DescribeVolumesResponse xmlns="http://ec2.amazonaws.com/doc/2008-08-08"> <volumeSet> <item> <volumeId>vol-4282672b</volumeId> <size>800</size> <status>in-use</status> <createTime>2008-05-07T11:51:50.000Z</createTime> <attachmentSet> <item> <volumeId>vol-4282672b</volumeId> <instanceId>i-6058a509</instanceId> <size>800</size> <status>attached</status> <attachTime>2008-05-07T12:51:50.000Z</attachTime> </item> </attachmentSet> </item> </volumeSet>