AWS Kinesis · Schema

GetDataEndpointInput

AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo

Properties

Name Type Description
StreamName object
StreamARN object
APIName object
View JSON Schema on GitHub

JSON Schema

kinesis-getdataendpointinput-schema.json Raw ↑
{
  "$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 <code>StreamARN</code> 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 <code>StreamName</code> in the request. "
        }
      ]
    },
    "APIName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/APIName"
        },
        {
          "description": "The name of the API action for which to get an endpoint."
        }
      ]
    }
  }
}