Amazon AppFlow · Schema
ExecutionResult
ExecutionResult schema from Amazon AppFlow API
ConnectorsData FlowData IntegrationETLIntegrationSaaSData Transfer
Properties
| Name | Type | Description |
|---|---|---|
| errorInfo | object | Provides any error message information related to the flow run. |
| bytesProcessed | integer | The total number of bytes processed by the flow run. |
| bytesWritten | integer | The total number of bytes written as a result of the flow run. |
| recordsProcessed | integer | The number of records processed in the flow run. |
| numParallelProcesses | integer | The number of processes that Amazon AppFlow ran at the same time when it retrieved your data. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-appflow/refs/heads/main/json-schema/appflow-execution-result-schema.json",
"title": "ExecutionResult",
"description": "ExecutionResult schema from Amazon AppFlow API",
"type": "object",
"properties": {
"errorInfo": {
"type": "object",
"description": "Provides any error message information related to the flow run."
},
"bytesProcessed": {
"type": "integer",
"format": "int64",
"example": 204800,
"description": "The total number of bytes processed by the flow run."
},
"bytesWritten": {
"type": "integer",
"format": "int64",
"example": 204800,
"description": "The total number of bytes written as a result of the flow run."
},
"recordsProcessed": {
"type": "integer",
"format": "int64",
"example": 1500,
"description": "The number of records processed in the flow run."
},
"numParallelProcesses": {
"type": "integer",
"format": "int64",
"example": 1,
"description": "The number of processes that Amazon AppFlow ran at the same time when it retrieved your data."
}
}
}