This file contains 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 os | |
import logging | |
import boto3 | |
class FirehoseStream(object): | |
"""Allows sending of events to Kinesis Firehose""" | |
def __init__(self, stream=None, region=None, | |
project=None, logger=None): | |
"""Create the stream client and wait for events. |