AWS Kinesis · Schema

ListTagsForDeliveryStreamInput

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
DeliveryStreamName object
ExclusiveStartTagKey object
Limit object
View JSON Schema on GitHub

JSON Schema

kinesis-listtagsfordeliverystreaminput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListTagsForDeliveryStreamInput",
  "title": "ListTagsForDeliveryStreamInput",
  "type": "object",
  "required": [
    "DeliveryStreamName"
  ],
  "properties": {
    "DeliveryStreamName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeliveryStreamName"
        },
        {
          "description": "The name of the delivery stream whose tags you want to list."
        }
      ]
    },
    "ExclusiveStartTagKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKey"
        },
        {
          "description": "The key to use as the starting point for the list of tags. If you set this parameter, <code>ListTagsForDeliveryStream</code> gets all tags that occur after <code>ExclusiveStartTagKey</code>."
        }
      ]
    },
    "Limit": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListTagsForDeliveryStreamInputLimit"
        },
        {
          "description": "The number of tags to return. If this number is less than the total number of tags associated with the delivery stream, <code>HasMoreTags</code> is set to <code>true</code> in the response. To list additional tags, set <code>ExclusiveStartTagKey</code> to the last key in the response. "
        }
      ]
    }
  }
}