Amazon Elastic Transcoder · Schema
Timing
Details about the timing of a job.
Amazon Web ServicesMediaTranscodingVideo
Properties
| Name | Type | Description |
|---|---|---|
| SubmitTimeMillis | object | |
| StartTimeMillis | object | |
| FinishTimeMillis | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-elastic-transcoder/refs/heads/main/json-schema/amazon-elastic-transcoder-timing-schema.json",
"title": "Timing",
"description": "Details about the timing of a job.",
"type": "object",
"properties": {
"SubmitTimeMillis": {
"allOf": [
{
"$ref": "#/components/schemas/NullableLong"
},
{
"description": "The time the job was submitted to Elastic Transcoder, in epoch milliseconds."
}
]
},
"StartTimeMillis": {
"allOf": [
{
"$ref": "#/components/schemas/NullableLong"
},
{
"description": "The time the job began transcoding, in epoch milliseconds."
}
]
},
"FinishTimeMillis": {
"allOf": [
{
"$ref": "#/components/schemas/NullableLong"
},
{
"description": "The time the job finished transcoding, in epoch milliseconds."
}
]
}
}
}