aws.kinesis.stream.put_record action
This trigger action will put a record in the Kinesis stream.
Action
This trigger action is found under the Third party heading.
Canvas
When dragged onto the canvas, the appearance of the action is a rectangle with two routing points.
The left routing point (red) is the failure route. This route will be taken if there is an error during execution.
The right routing point (green) is the success route. This route will be taken if action executes successfully.
Form
Parameters
Name |
Type |
Required |
Description |
---|---|---|---|
streamName |
String |
Yes |
The name of the stream to put the data record into. |
partitionKey |
String |
Yes |
Determines which shard in the stream the data record is assigned to. |
hashKey |
String |
|
The hash value used to explicitly determine the shard the data record is assigned to by overriding the partition key hash. |
sequenceNumber |
String |
|
Guarantees strictly increasing sequence numbers, for puts from the same client and to the same partition key. |
region |
String |
|
Region of the AWS instance, ie "us-east-1". |
payload |
Array |
Yes |
The data blob to put into the record. |