Amazon Neptune · Schema
ImportTaskOutput
DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL
Properties
| Name | Type | Description |
|---|---|---|
| graphId | string | |
| taskId | string | |
| source | string | |
| format | string | |
| roleArn | string | |
| status | string | |
| importOptions | object | |
| importTaskDetails | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ImportTaskOutput",
"title": "ImportTaskOutput",
"type": "object",
"properties": {
"graphId": {
"type": "string"
},
"taskId": {
"type": "string"
},
"source": {
"type": "string"
},
"format": {
"type": "string"
},
"roleArn": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"INITIALIZING",
"EXPORTING",
"ANALYZING_DATA",
"IMPORTING",
"REPROVISIONING",
"ROLLING_BACK",
"SUCCEEDED",
"FAILED",
"CANCELLING",
"CANCELLED"
]
},
"importOptions": {
"type": "object"
},
"importTaskDetails": {
"type": "object",
"properties": {
"status": {
"type": "string"
},
"startTime": {
"type": "string",
"format": "date-time"
},
"timeElapsedSeconds": {
"type": "integer"
},
"progressPercentage": {
"type": "integer"
},
"errorCount": {
"type": "integer"
},
"errorDetails": {
"type": "string"
},
"statementCount": {
"type": "integer"
},
"dictionaryEntryCount": {
"type": "integer"
}
}
}
}
}