1**To view the status of a conversion task**
2
3This example returns the status of a conversion task with the ID import-i-ffvko9js.
4
5Command::
6
7  aws ec2 describe-conversion-tasks --conversion-task-ids import-i-ffvko9js
8
9Output::
10
11  {
12      "ConversionTasks": [
13          {
14              "ConversionTaskId": "import-i-ffvko9js",
15              "ImportInstance": {
16                  "InstanceId": "i-1234567890abcdef0",
17                  "Volumes": [
18                      {
19                          "Volume": {
20                              "Id": "vol-049df61146c4d7901",
21                              "Size": 16
22                          },
23                          "Status": "completed",
24                          "Image": {
25                              "Size": 1300687360,
26                              "ImportManifestUrl": "https://s3.amazonaws.com/myimportbucket/411443cd-d620-4f1c-9d66-13144EXAMPLE/RHEL5.vmdkmanifest.xml?AWSAccessKeyId=AKIAIOSFODNN7EXAMPLE&Expires=140EXAMPLE&Signature=XYNhznHNgCqsjDxL9wRL%2FJvEXAMPLE",
27                              "Format": "VMDK"
28                          },
29                          "BytesConverted": 1300682960,
30                          "AvailabilityZone": "us-east-1d"
31                      }
32                  ]
33              },
34              "ExpirationTime": "2014-05-14T22:06:23Z",
35              "State": "completed"
36          }
37      ]
38  }
39