# Amazon Kinesis [Amazon Kinesis](https://docs.aws.amazon.com/streams/latest/dev/key-concepts.html) is a cloud-based service for real-time data streaming and analytics, enabling the processing and analysis of large streams of data in real time. omniload supports Kinesis as a source. ## URI format The URI format for Kinesis is as follows: ```text kinesis://?aws_access_key_id=&aws_secret_access_key=®ion_name= ``` URI parameters: - `aws_access_key_id`: the AWS access key ID used to authenticate the request - `aws_secret_access_key`: the AWS secret access key used to authenticate the request - `region_name`: the AWS region name where the stream is located ## Setting up a Kinesis Integration To get Kinesis credentials, please refer to the guide [here](https://dlthub.com/docs/dlt-ecosystem/verified-sources/amazon_kinesis#grab-credentials) Once you complete the guide, you should have a aws_access_key_id, aws_secret_access_key and region_name. Let's say your `aws_access_key_id` is id_123, your `aws_secret_access_key` is secret_123 and your `region_name` is eu-central-1, here's a sample command that will copy the data from Kinesis into a DuckDB database: ```bash omniload ingest --source-uri 'kinesis://?aws_access_key_id=id_123&aws_secret_access_key=secret_123®ion_name=eu-central-1' \ --source-table 'stream_name_1' \ --dest-uri duckdb:///kinesis.duckdb \ --dest-table 'dest.results' ``` When using Kinesis as a source, specify the [StreamName] you want to read from as the `--source-table` parameter. For example, if you want to read from a Kinesis stream named "customer_events", you would use `--source-table 'customer_events'`. You can also use a full Kinesis [StreamARN] to address the stream in [ARN] format, like `arn:aws:kinesis:eu-central-1:842404475894:stream/customer_events`. ### Initial Load Configuration By default, omniload reads from the beginning of the Kinesis stream. To start reading from a specific time, use the `interval_start` parameter. [ARN]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html [StreamARN]: https://docs.aws.amazon.com/kinesis/latest/APIReference/API_StreamDescription.html#Streams-Type-StreamDescription-StreamARN [StreamName]: https://docs.aws.amazon.com/kinesis/latest/APIReference/API_StreamDescription.html#Streams-Type-StreamDescription-StreamName