Amazon Kinesis Video Streams · JSON Structure

Amazon Kinesis Video Streams Stream Structure

An Amazon Kinesis Video Stream.

Type: object Properties: 5
IoTMachine LearningMediaVideo Streaming

Stream is a JSON Structure definition published by Amazon Kinesis Video Streams, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

StreamName StreamARN Status DataRetentionInHours CreationTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-kinesis-video-streams/refs/heads/main/json-structure/amazon-kinesis-video-streams-stream-structure.json",
  "name": "Stream",
  "description": "An Amazon Kinesis Video Stream.",
  "type": "object",
  "properties": {
    "StreamName": {
      "type": "string",
      "description": "The name of the stream.",
      "example": "my-video-stream"
    },
    "StreamARN": {
      "type": "string",
      "description": "The Amazon Resource Name (ARN) of the stream."
    },
    "Status": {
      "type": "string",
      "description": "The status of the stream.",
      "example": "ACTIVE",
      "enum": [
        "CREATING",
        "ACTIVE",
        "UPDATING",
        "DELETING"
      ]
    },
    "DataRetentionInHours": {
      "type": "int32",
      "description": "How long the channel retains data (in hours).",
      "example": 24
    },
    "CreationTime": {
      "type": "datetime",
      "description": "When the stream was created."
    }
  }
}