AWS Kinesis · Schema

UpdateImageGenerationConfigurationInput

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
StreamName object
StreamARN object
ImageGenerationConfiguration object
View JSON Schema on GitHub

JSON Schema

kinesis-updateimagegenerationconfigurationinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateImageGenerationConfigurationInput",
  "title": "UpdateImageGenerationConfigurationInput",
  "type": "object",
  "properties": {
    "StreamName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamName"
        },
        {
          "description": "The name of the stream from which to update the image generation configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>."
        }
      ]
    },
    "StreamARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the Kinesis video stream from where you want to update the image generation configuration. You must specify either the <code>StreamName</code> or the <code>StreamARN</code>."
        }
      ]
    },
    "ImageGenerationConfiguration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageGenerationConfiguration"
        },
        {
          "description": "The structure that contains the information required for the KVS images delivery. If the structure is null, the configuration will be deleted from the stream."
        }
      ]
    }
  }
}