Destinations: Streaming
Kinesis Firehose (Streaming)
Amazon Kinesis Data Firehose is an AWS service that makes it easy to load streaming data into data stores, data lakes, and analytics services, automatically handling data transformation and delivery at scale.
Connecting Kinesis Data Firehose (IAM Role Setup - General Setup)
To integrate Kinesis Data Firehose into your ProxyHook you first need to create an IAM role for ProxyHook within your AWS account. If you've already done this, you can skip to the next section
- Log into your AWS account and head to 'Identity and Access Management (IAM)'
- Click 'Create Role'
- Select 'AWS account' and select 'Another AWS Account' with the value
121269227306
- Skip the permissions policy page by clicking 'Next'
- Provide a name for the role (e.g. ProxyHook) and click Create Role
- Note the ARN Role for your destination settings in the ProxyHook Settings page
Connecting Kinesis Data Firehose (IAM Role Setup - Permissions)
In order to have records posted to your Kinesis Data Firehose, you will need to ensure your ProxyHook IAM account has permissions. To do so, follow these steps:
- Log into your AWS account and head to 'Identity and Access Management (IAM)' > 'Roles'
- Select your role made from above and under Permissions, Select Add permissions > Create Inline Police
- Click JSON and paste the following, editing the code where variables exist
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"firehose:PutRecord"
],
"Resource": [
"arn:aws:firehose:YOUR_REGION:YOUR_ACCOUNT_ID:stream/YOUR_STREAM_NAME"
]
}
]
}
- Click next, create a policy name and hit save.