aws-kinesis-0.1.1: Bindings for AWS Kinesis Version 2013-12-02

Stabilityexperimental
MaintainerLars Kuhtz <lars@alephcloud.com>
Safe HaskellNone

Aws.Kinesis

Description

API Version: 2013-12-02

http://docs.aws.amazon.com/kinesis/2013-12-02/APIReference

The types and functions of this package are supposed to be use with the machinery from the aws package.

Here is a very simple example for making a single request to AWS Kinesis.

 import Aws
 import Aws.Core
 import Aws.General
 import Aws.Kinesis
 import Data.IORef

 cfg <- Aws.baseConfiguration
 creds <- Credentials "access-key-id" "secret-access-key" `fmap` newIORef []
 let kinesisCfg = KinesisConfiguration UsWest2
 simpleAws cfg kinesisCfg $ ListStreams Nothing Nothing

In order to run the example you must replace access-key-id and secret-access-key with the respective values for your AWS account.

Documentation