aws.kinesis.firehose.put_record
The aws.kinesis.firehose.put_record command is used to publish data to a Kinesis Firehose data stream.
TR50 Request
{
"cmd" : {
"command" : "aws.kinesis.firehose.put_record",
"params" : {
"region" : "XXXXXXX",
"streamName" : "XXXXXXX",
"payload": {}
}
}
}
Request Parameters
Name |
Type |
Required |
Description |
---|---|---|---|
region |
String |
|
Region of the AWS instance, such as us-east-1. |
streamName |
String |
Yes |
The name of the stream to into which to insert the data record. |
payload |
Array |
Yes |
The data blob to put into the record. |
TR50 Response
If the command is sent successfully a success message is returned. Otherwise, an error and error message are returned.
{
"cmd": {
"success": true
}
}