Copyright | Copyright (c) 2013-2014 PivotCloud, Inc. |
---|---|
License | Apache License, Version 2.0 |
Maintainer | Lars Kuhtz <lars@alephcloud.com> |
Stability | experimental |
Safe Haskell | None |
Language | Haskell2010 |
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.