AWS Kinesis · Schema
ListTagsForStreamInput
Represents the input for ListTagsForStream.
AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo
Properties
| Name | Type | Description |
|---|---|---|
| StreamName | object | |
| ExclusiveStartTagKey | object | |
| Limit | object | |
| StreamARN | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListTagsForStreamInput",
"title": "ListTagsForStreamInput",
"type": "object",
"properties": {
"StreamName": {
"allOf": [
{
"$ref": "#/components/schemas/StreamName"
},
{
"description": "The name of the stream."
}
]
},
"ExclusiveStartTagKey": {
"allOf": [
{
"$ref": "#/components/schemas/TagKey"
},
{
"description": "The key to use as the starting point for the list of tags. If this parameter is set, <code>ListTagsForStream</code> gets all tags that occur after <code>ExclusiveStartTagKey</code>. "
}
]
},
"Limit": {
"allOf": [
{
"$ref": "#/components/schemas/ListTagsForStreamInputLimit"
},
{
"description": "The number of tags to return. If this number is less than the total number of tags associated with the stream, <code>HasMoreTags</code> is set to <code>true</code>. To list additional tags, set <code>ExclusiveStartTagKey</code> to the last key in the response."
}
]
},
"StreamARN": {
"allOf": [
{
"$ref": "#/components/schemas/StreamARN"
},
{
"description": "The ARN of the stream."
}
]
}
},
"description": "Represents the input for <code>ListTagsForStream</code>."
}