ListPresetsResponse

The ListPresetsResponse structure.

Amazon Web ServicesMediaTranscodingVideo

Properties

Name Type Description
Presets object
NextPageToken object
View JSON Schema on GitHub

JSON Schema

amazon-elastic-transcoder-list-presets-response-schema.json Raw ↑
{
  "$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-list-presets-response-schema.json",
  "title": "ListPresetsResponse",
  "description": "The <code>ListPresetsResponse</code> structure.",
  "type": "object",
  "properties": {
    "Presets": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Presets"
        },
        {
          "description": "An array of <code>Preset</code> objects."
        }
      ]
    },
    "NextPageToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Id"
        },
        {
          "description": "A value that you use to access the second and subsequent pages of results, if any. When the presets fit on one page or when you've reached the last page of results, the value of <code>NextPageToken</code> is <code>null</code>."
        }
      ]
    }
  }
}