AWS Kinesis · Schema
DescribeStreamConsumerInput
AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo
Properties
| Name | Type | Description |
|---|---|---|
| StreamARN | object | |
| ConsumerName | object | |
| ConsumerARN | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DescribeStreamConsumerInput",
"title": "DescribeStreamConsumerInput",
"type": "object",
"properties": {
"StreamARN": {
"allOf": [
{
"$ref": "#/components/schemas/StreamARN"
},
{
"description": "The ARN of the Kinesis data stream that the consumer is registered with. For more information, see <a href=\"https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kinesis-streams\">Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces</a>."
}
]
},
"ConsumerName": {
"allOf": [
{
"$ref": "#/components/schemas/ConsumerName"
},
{
"description": "The name that you gave to the consumer."
}
]
},
"ConsumerARN": {
"allOf": [
{
"$ref": "#/components/schemas/ConsumerARN"
},
{
"description": "The ARN returned by Kinesis Data Streams when you registered the consumer."
}
]
}
}
}