Created
November 8, 2021 23:30
-
-
Save anna-geller/fda460524b49b7dff71b53a6123eba12 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto3 | |
write_client = boto3.client("timestream-write") | |
rejected_records = write_client.write_records( | |
DatabaseName="demo", TableName="data", Records=records, CommonAttributes={} | |
) | |
print(rejected_records) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment