AWS Kinesis · Schema

RemoveTagsFromStreamInput

Represents the input for RemoveTagsFromStream.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

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

JSON Schema

kinesis-removetagsfromstreaminput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RemoveTagsFromStreamInput",
  "title": "RemoveTagsFromStreamInput",
  "type": "object",
  "required": [
    "TagKeys"
  ],
  "properties": {
    "StreamName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamName"
        },
        {
          "description": "The name of the stream."
        }
      ]
    },
    "TagKeys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKeyList"
        },
        {
          "description": "A list of tag keys. Each corresponding tag is removed from the stream."
        }
      ]
    },
    "StreamARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamARN"
        },
        {
          "description": "The ARN of the stream."
        }
      ]
    }
  },
  "description": "Represents the input for <code>RemoveTagsFromStream</code>."
}