AWS Kinesis · Schema

UntagStreamInput

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

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

JSON Schema

kinesis-untagstreaminput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UntagStreamInput",
  "title": "UntagStreamInput",
  "type": "object",
  "required": [
    "TagKeyList"
  ],
  "properties": {
    "StreamARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the stream that you want to remove tags from."
        }
      ]
    },
    "StreamName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StreamName"
        },
        {
          "description": "The name of the stream that you want to remove tags from."
        }
      ]
    },
    "TagKeyList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKeyList"
        },
        {
          "description": "A list of the keys of the tags that you want to remove."
        }
      ]
    }
  }
}