Amazon MediaConvert · JSON Structure

Mediaconvert Api Create Preset Request Structure

CreatePresetRequest schema from Amazon MediaConvert API

Type: object Properties: 5 Required: 2
BroadcastingMedia ProcessingMedia

CreatePresetRequest is a JSON Structure definition published by Amazon MediaConvert, describing 5 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Category Description Name Settings Tags

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-structure/mediaconvert-api-create-preset-request-structure.json",
  "name": "CreatePresetRequest",
  "type": "object",
  "description": "CreatePresetRequest schema from Amazon MediaConvert API",
  "properties": {
    "Category": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "category"
          },
          "description": "Optional. A category for the preset you are creating."
        }
      ]
    },
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "description"
          },
          "description": "Optional. A description of the preset you are creating."
        }
      ]
    },
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "name"
          },
          "description": "The name of the preset you are creating."
        }
      ]
    },
    "Settings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PresetSettings"
        },
        {
          "xml": {
            "name": "settings"
          },
          "description": "Settings for preset"
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__mapOf__string"
        },
        {
          "xml": {
            "name": "tags"
          },
          "description": "The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key."
        }
      ]
    }
  },
  "required": [
    "Settings",
    "Name"
  ]
}