ListStreamKeysResponse

ListStreamKeysResponse schema

Live StreamingMediaVideoReal-Time

Properties

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

JSON Schema

ivs-list-stream-keys-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-stream-keys-response-schema.json",
  "title": "ListStreamKeysResponse",
  "description": "ListStreamKeysResponse schema",
  "type": "object",
  "properties": {
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "If there are more stream keys than <code>maxResults</code>, use <code>nextToken</code> in the request to get the next set."
        }
      ]
    },
    "streamKeys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamKeyList"
        },
        {
          "description": "List of stream keys."
        }
      ]
    }
  },
  "required": [
    "streamKeys"
  ]
}