AWS Kinesis · Schema

ListTagsForStreamOutput

Represents the output for ListTagsForStream.

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
Tags object
HasMoreTags object
View JSON Schema on GitHub

JSON Schema

kinesis-listtagsforstreamoutput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListTagsForStreamOutput",
  "title": "ListTagsForStreamOutput",
  "type": "object",
  "required": [
    "Tags",
    "HasMoreTags"
  ],
  "properties": {
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "A list of tags associated with <code>StreamName</code>, starting with the first tag after <code>ExclusiveStartTagKey</code> and up to the specified <code>Limit</code>. "
        }
      ]
    },
    "HasMoreTags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanObject"
        },
        {
          "description": "If set to <code>true</code>, more tags are available. To request additional tags, set <code>ExclusiveStartTagKey</code> to the key of the last tag returned."
        }
      ]
    }
  },
  "description": "Represents the output for <code>ListTagsForStream</code>."
}