Amazon MediaLive · Schema
BatchFailedResultModel
Details from a failed operation
BroadcastingMedia ProcessingMedia
Properties
| Name | Type | Description |
|---|---|---|
| Arn | object | |
| Code | object | |
| Id | object | |
| Message | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-medialive/refs/heads/main/json-schema/medialive-api-batch-failed-result-model-schema.json",
"title": "BatchFailedResultModel",
"description": "Details from a failed operation",
"type": "object",
"properties": {
"Arn": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "arn"
},
"description": "ARN of the resource"
}
]
},
"Code": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "code"
},
"description": "Error code for the failed operation"
}
]
},
"Id": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "id"
},
"description": "ID of the resource"
}
]
},
"Message": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "message"
},
"description": "Error message for the failed operation"
}
]
}
}
}