Amazon DataSync · Schema
Task Execution
A specific execution run of a DataSync task.
Data TransferMigrationStorageAutomationHybrid Cloud
Properties
| Name | Type | Description |
|---|---|---|
| TaskExecutionArn | string | The ARN of the task execution. This ARN uniquely identifies the execution. |
| Status | string | |
| StartTime | string | |
| EstimatedFilesToTransfer | integer | |
| FilesTransferred | integer | |
| BytesTransferred | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/amazon-datasync/json-schema/task-execution-schema.json",
"title": "Task Execution",
"description": "A specific execution run of a DataSync task.",
"type": "object",
"properties": {
"TaskExecutionArn": {
"type": "string",
"description": "The ARN of the task execution. This ARN uniquely identifies the execution."
},
"Status": {
"type": "string",
"enum": [
"QUEUED",
"LAUNCHING",
"PREPARING",
"TRANSFERRING",
"VERIFYING",
"SUCCESS",
"ERROR"
]
},
"StartTime": {
"type": "string",
"format": "date-time"
},
"EstimatedFilesToTransfer": {
"type": "integer"
},
"FilesTransferred": {
"type": "integer"
},
"BytesTransferred": {
"type": "integer"
}
}
}