timestreamwrite_write_records: Enables you to write your time-series data into Timestream

View source: R/timestreamwrite_operations.R

timestreamwrite_write_recordsR Documentation

Enables you to write your time-series data into Timestream

Description

Enables you to write your time-series data into Timestream. You can specify a single data point or a batch of data points to be inserted into the system. Timestream offers you a flexible schema that auto detects the column names and data types for your Timestream tables based on the dimension names and data types of the data points you specify when invoking writes into the database.

See https://www.paws-r-sdk.com/docs/timestreamwrite_write_records/ for full documentation.

Usage

timestreamwrite_write_records(
  DatabaseName,
  TableName,
  CommonAttributes = NULL,
  Records
)

Arguments

DatabaseName

[required] The name of the Timestream database.

TableName

[required] The name of the Timestream table.

CommonAttributes

A record that contains the common measure, dimension, time, and version attributes shared across all the records in the request. The measure and dimension attributes specified will be merged with the measure and dimension attributes in the records object when the data is written into Timestream. Dimensions may not overlap, or a ValidationException will be thrown. In other words, a record must contain dimensions with unique names.

Records

[required] An array of records that contain the unique measure, dimension, time, and version attributes for each time-series data point.


paws.database documentation built on Sept. 12, 2023, 1:21 a.m.