kinesis_put_record | R Documentation |
Write a record to a Kinesis Stream
kinesis_put_record(stream, region = "us-west-1", data, partitionKey)
stream |
stream name (string) |
region |
AWS region (string) |
data |
data blog (string) |
partitionKey |
determines which shard in the stream the data record is assigned to, eg username, stock symbol etc (string) |
invisible list including the shard id and sequence number
## Not run:
df <- mtcars[1, ]
str(kinesis_put_record('test-AWR', data = jsonlite::toJSON(df), partitionKey = row.names(df)))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.