{
"$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 <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": "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."
}
]
}
}
}