Describe Export Image Tasks
| ec2_describe_export_image_tasks | R Documentation |
Describes the specified export image tasks or all of your export image tasks¶
Description¶
Describes the specified export image tasks or all of your export image tasks.
Usage¶
Arguments¶
DryRunChecks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is
DryRunOperation. Otherwise, it isUnauthorizedOperation.FiltersFilter tasks using the
task-statefilter and one of the following values:active,completed,deleting, ordeleted.ExportImageTaskIdsThe IDs of the export image tasks.
MaxResultsThe maximum number of results to return in a single call.
NextTokenA token that indicates the next page of results.
Value¶
A list with the following syntax:
list(
ExportImageTasks = list(
list(
Description = "string",
ExportImageTaskId = "string",
ImageId = "string",
Progress = "string",
S3ExportLocation = list(
S3Bucket = "string",
S3Prefix = "string"
),
Status = "string",
StatusMessage = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)