Amazon MediaLive · Schema

BatchSuccessfulResultModel

Details from a successful operation

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
Arn object
Id object
State object
View JSON Schema on GitHub

JSON Schema

medialive-api-batch-successful-result-model-schema.json Raw ↑
{
  "$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-successful-result-model-schema.json",
  "title": "BatchSuccessfulResultModel",
  "description": "Details from a successful operation",
  "type": "object",
  "properties": {
    "Arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "arn"
          },
          "description": "ARN of the resource"
        }
      ]
    },
    "Id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "id"
          },
          "description": "ID of the resource"
        }
      ]
    },
    "State": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "state"
          },
          "description": "Current state of the resource"
        }
      ]
    }
  }
}