{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RegisterStreamConsumerInput", "title": "RegisterStreamConsumerInput", "type": "object", "required": [ "StreamARN", "ConsumerName" ], "properties": { "StreamARN": { "allOf": [ { "$ref": "#/components/schemas/StreamARN" }, { "description": "The ARN of the Kinesis data stream that you want to register the consumer with. For more info, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces." } ] }, "ConsumerName": { "allOf": [ { "$ref": "#/components/schemas/ConsumerName" }, { "description": "For a given Kinesis data stream, each consumer must have a unique name. However, consumer names don't have to be unique across data streams." } ] } } }