ListPlaybackKeyPairsResponse

ListPlaybackKeyPairsResponse schema

Live StreamingMediaVideoReal-Time

Properties

Name Type Description
keyPairs object
nextToken object
View JSON Schema on GitHub

JSON Schema

ivs-list-playback-key-pairs-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-interactive-video-service/refs/heads/main/json-schema/ivs-list-playback-key-pairs-response-schema.json",
  "title": "ListPlaybackKeyPairsResponse",
  "description": "ListPlaybackKeyPairsResponse schema",
  "type": "object",
  "properties": {
    "keyPairs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PlaybackKeyPairList"
        },
        {
          "description": "List of key pairs."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "If there are more key pairs than <code>maxResults</code>, use <code>nextToken</code> in the request to get the next set."
        }
      ]
    }
  },
  "required": [
    "keyPairs"
  ]
}