|
| Network.AWS.AWSConnection |
|
|
|
|
| Description |
| Connection and authentication info for an Amazon AWS request.
|
|
| Synopsis |
|
|
|
|
| Constants
|
|
|
| Hostname used for connecting to Amazon's production S3 service (s3.amazonaws.com).
|
|
|
| Port number used for connecting to Amazon's production S3 service (80).
|
|
| Function Types
|
|
|
| :: String | Access Key ID
| | -> String | Secret Access Key
| | -> AWSConnection | Connection to Amazon S3
| | Create an AWSConnection to Amazon from credentials. Uses the
production service.
|
|
|
|
| Retrieve Access and Secret keys from environment variables
AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY, respectively.
Either variable being undefined or empty will result in
Nothing.
|
|
| Data Types
|
|
|
| An Amazon Web Services connection. Everything needed to connect
and authenticate requests.
| | Constructors | | AWSConnection | | | awsHost :: String | Service provider hostname
| | awsPort :: Int | Service provider port number
| | awsAccessKey :: String | Access Key ID
| | awsSecretKey :: String | Secret Access Key
|
|
| Instances | |
|
|
| Produced by Haddock version 2.6.0 |