{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetDataEndpointInput", "title": "GetDataEndpointInput", "type": "object", "required": [ "APIName" ], "properties": { "StreamName": { "allOf": [ { "$ref": "#/components/schemas/StreamName" }, { "description": "The name of the stream that you want to get the endpoint for. You must specify either this parameter or a StreamARN in the request." } ] }, "StreamARN": { "allOf": [ { "$ref": "#/components/schemas/ResourceARN" }, { "description": "The Amazon Resource Name (ARN) of the stream that you want to get the endpoint for. You must specify either this parameter or a StreamName in the request. " } ] }, "APIName": { "allOf": [ { "$ref": "#/components/schemas/APIName" }, { "description": "The name of the API action for which to get an endpoint." } ] } } }