AWS Kinesis · Schema

MediaStorageConfiguration

A structure that encapsulates, or contains, the media storage configuration properties.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
StreamARN object
Status object
View JSON Schema on GitHub

JSON Schema

kinesis-mediastorageconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MediaStorageConfiguration",
  "title": "MediaStorageConfiguration",
  "type": "object",
  "required": [
    "Status"
  ],
  "properties": {
    "StreamARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the stream "
        }
      ]
    },
    "Status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MediaStorageConfigurationStatus"
        },
        {
          "description": "The status of the media storage configuration."
        }
      ]
    }
  },
  "description": "A structure that encapsulates, or contains, the media storage configuration properties."
}