GetStreamSessionRequest

GetStreamSessionRequest schema

Live StreamingMediaVideoReal-Time

Properties

Name Type Description
channelArn object
streamId object
View JSON Schema on GitHub

JSON Schema

ivs-get-stream-session-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-get-stream-session-request-schema.json",
  "title": "GetStreamSessionRequest",
  "description": "GetStreamSessionRequest schema",
  "type": "object",
  "properties": {
    "channelArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ChannelArn"
        },
        {
          "description": "ARN of the channel resource"
        }
      ]
    },
    "streamId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamId"
        },
        {
          "description": "Unique identifier for a live or previously live stream in the specified channel. If no <code>streamId</code> is provided, this returns the most recent stream session for the channel, if it exists."
        }
      ]
    }
  },
  "required": [
    "channelArn"
  ]
}