UpdatePresetRequest

UpdatePresetRequest schema from Amazon MediaConvert API

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
Category object
Description object
Settings object
View JSON Schema on GitHub

JSON Schema

mediaconvert-api-update-preset-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-schema/mediaconvert-api-update-preset-request-schema.json",
  "title": "UpdatePresetRequest",
  "description": "UpdatePresetRequest schema from Amazon MediaConvert API",
  "type": "object",
  "properties": {
    "Category": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "category"
          },
          "description": "The new category for the preset, if you are changing it."
        }
      ]
    },
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "description"
          },
          "description": "The new description for the preset, if you are changing it."
        }
      ]
    },
    "Settings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PresetSettings"
        },
        {
          "xml": {
            "name": "settings"
          },
          "description": "Settings for preset"
        }
      ]
    }
  }
}