Ivs List Recording Configurations Response Structure

ListRecordingConfigurationsResponse schema

Type: object Properties: 2 Required: 1
Live StreamingMediaVideoReal-Time

ListRecordingConfigurationsResponse is a JSON Structure definition published by Amazon Interactive Video Service, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

nextToken recordingConfigurations

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-interactive-video-service/refs/heads/main/json-structure/ivs-list-recording-configurations-response-structure.json",
  "name": "ListRecordingConfigurationsResponse",
  "description": "ListRecordingConfigurationsResponse schema",
  "type": "object",
  "properties": {
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "If there are more recording configurations than <code>maxResults</code>, use <code>nextToken</code> in the request to get the next set."
        }
      ]
    },
    "recordingConfigurations": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecordingConfigurationList"
        },
        {
          "description": "List of the matching recording configurations."
        }
      ]
    }
  },
  "required": [
    "recordingConfigurations"
  ]
}