ListStreamSessionsRequest

ListStreamSessionsRequest schema

Live StreamingMediaVideoReal-Time

Properties

Name Type Description
channelArn object
maxResults object
nextToken object
View JSON Schema on GitHub

JSON Schema

ivs-list-stream-sessions-request-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-sessions-request-schema.json",
  "title": "ListStreamSessionsRequest",
  "description": "ListStreamSessionsRequest schema",
  "type": "object",
  "properties": {
    "channelArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ChannelArn"
        },
        {
          "description": "Channel ARN used to filter the list."
        }
      ]
    },
    "maxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaxStreamResults"
        },
        {
          "description": "Maximum number of streams to return. Default: 100."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "The first stream to retrieve. This is used for pagination; see the <code>nextToken</code> response field."
        }
      ]
    }
  },
  "required": [
    "channelArn"
  ]
}