Skip to main content
POST
/
streaming
/
kinesis
Configure AWS Kinesis stream sink
curl --request POST \
  --url http://sandbox.mintlify.com/streaming/kinesis \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "streamName": "<string>",
  "region": "<string>",
  "credentials": {
    "accessKeyId": "<string>",
    "secretAccessKey": "<string>"
  },
  "enabled": true
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Kinesis configuration details

streamName
string
required

Name of the Kinesis stream

region
string
required

AWS region of the stream

credentials
object
required
enabled
boolean
default:true

Whether streaming to this sink is enabled

Response

200

Kinesis sink configured successfully