Get Export Image Task
| appstream_get_export_image_task | R Documentation |
Retrieves information about an export image task, including its current state, progress, and any error details¶
Description¶
Retrieves information about an export image task, including its current state, progress, and any error details.
Usage¶
appstream_get_export_image_task(TaskId)
Arguments¶
TaskId |
The unique identifier of the export image task to retrieve information about. |
Value¶
A list with the following syntax:
list(
ExportImageTask = list(
TaskId = "string",
ImageArn = "string",
AmiName = "string",
CreatedDate = as.POSIXct(
"2015-01-01"
),
AmiDescription = "string",
State = "EXPORTING"|"COMPLETED"|"FAILED",
AmiId = "string",
TagSpecifications = list(
"string"
),
ErrorDetails = list(
list(
ErrorCode = "string",
ErrorMessage = "string"
)
)
)
)
Request syntax¶
svc$get_export_image_task(
TaskId = "string"
)