Parameter description
| Parameter | Type | Description |
|---|---|---|
| image | CreateResponse object, str, dict | Image ID |
Response description
The delete_job method returns an ActionResponse object. ActionResponse provides only two attributes: request ID and status code.
Example
try:# Get a Client object.client = Client(......# Image ID.image = "img-xxxx"client.delete_image(image)except ClientError, e:print(e)