packages feed

amazonka-s3-1.3.2: amazonka-s3.cabal

name:                  amazonka-s3
version:               1.3.2
synopsis:              Amazon Simple Storage Service SDK.
homepage:              https://github.com/brendanhay/amazonka
bug-reports:           https://github.com/brendanhay/amazonka/issues
license:               OtherLicense
license-file:          LICENSE
author:                Brendan Hay
maintainer:            Brendan Hay <brendan.g.hay@gmail.com>
copyright:             Copyright (c) 2013-2015 Brendan Hay
category:              Network, AWS, Cloud, Distributed Computing
build-type:            Simple
cabal-version:         >= 1.10
extra-source-files:    README.md fixture/*.yaml fixture/*.proto
description:
    Amazon Simple Storage Service is storage for the Internet. Amazon S3 has
    a simple web services interface that you can use to store and retrieve
    any amount of data, at any time, from anywhere on the web. It gives any
    developer access to the same highly scalable, reliable, fast,
    inexpensive data storage infrastructure that Amazon uses to run its own
    global network of web sites. The service aims to maximize benefits of
    scale and to pass those benefits on to developers.
    .
    The types from this library are intended to be used with
    <http://hackage.haskell.org/package/amazonka amazonka>, which provides
    mechanisms for specifying AuthN/AuthZ information and sending requests.
    .
    Use of lenses is required for constructing and manipulating types.
    This is due to the amount of nesting of AWS types and transparency regarding
    de/serialisation into more palatable Haskell values.
    The provided lenses should be compatible with any of the major lens libraries
    such as <http://hackage.haskell.org/package/lens lens> or
    <http://hackage.haskell.org/package/lens-family-core lens-family-core>.
    .
    See "Network.AWS.S3" and the <http://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html AWS API Reference>
    to get started.

source-repository head
    type:     git
    location: git://github.com/brendanhay/amazonka.git

library
    default-language:  Haskell2010
    hs-source-dirs:    src gen

    ghc-options:       -Wall

    exposed-modules:
          Network.AWS.S3
        , Network.AWS.S3.AbortMultipartUpload
        , Network.AWS.S3.CompleteMultipartUpload
        , Network.AWS.S3.CopyObject
        , Network.AWS.S3.CreateBucket
        , Network.AWS.S3.CreateMultipartUpload
        , Network.AWS.S3.DeleteBucket
        , Network.AWS.S3.DeleteBucketCORS
        , Network.AWS.S3.DeleteBucketLifecycle
        , Network.AWS.S3.DeleteBucketPolicy
        , Network.AWS.S3.DeleteBucketReplication
        , Network.AWS.S3.DeleteBucketTagging
        , Network.AWS.S3.DeleteBucketWebsite
        , Network.AWS.S3.DeleteObject
        , Network.AWS.S3.DeleteObjects
        , Network.AWS.S3.GetBucketACL
        , Network.AWS.S3.GetBucketCORS
        , Network.AWS.S3.GetBucketLifecycleConfiguration
        , Network.AWS.S3.GetBucketLocation
        , Network.AWS.S3.GetBucketLogging
        , Network.AWS.S3.GetBucketNotificationConfiguration
        , Network.AWS.S3.GetBucketPolicy
        , Network.AWS.S3.GetBucketReplication
        , Network.AWS.S3.GetBucketRequestPayment
        , Network.AWS.S3.GetBucketTagging
        , Network.AWS.S3.GetBucketVersioning
        , Network.AWS.S3.GetBucketWebsite
        , Network.AWS.S3.GetObject
        , Network.AWS.S3.GetObjectACL
        , Network.AWS.S3.GetObjectTorrent
        , Network.AWS.S3.HeadBucket
        , Network.AWS.S3.HeadObject
        , Network.AWS.S3.ListBuckets
        , Network.AWS.S3.ListMultipartUploads
        , Network.AWS.S3.ListObjectVersions
        , Network.AWS.S3.ListObjects
        , Network.AWS.S3.ListParts
        , Network.AWS.S3.PutBucketACL
        , Network.AWS.S3.PutBucketCORS
        , Network.AWS.S3.PutBucketLifecycleConfiguration
        , Network.AWS.S3.PutBucketLogging
        , Network.AWS.S3.PutBucketNotificationConfiguration
        , Network.AWS.S3.PutBucketPolicy
        , Network.AWS.S3.PutBucketReplication
        , Network.AWS.S3.PutBucketRequestPayment
        , Network.AWS.S3.PutBucketTagging
        , Network.AWS.S3.PutBucketVersioning
        , Network.AWS.S3.PutBucketWebsite
        , Network.AWS.S3.PutObject
        , Network.AWS.S3.PutObjectACL
        , Network.AWS.S3.RestoreObject
        , Network.AWS.S3.Types
        , Network.AWS.S3.UploadPart
        , Network.AWS.S3.UploadPartCopy
        , Network.AWS.S3.Waiters

    other-modules:
          Network.AWS.S3.Internal
        , Network.AWS.S3.Types.Product
        , Network.AWS.S3.Types.Sum

    build-depends:
          amazonka-core == 1.3.2.*
        , base          >= 4.7     && < 5
        , lens >= 4.4
        , text >= 1.1

test-suite amazonka-s3-test
    type:              exitcode-stdio-1.0
    default-language:  Haskell2010
    hs-source-dirs:    test
    main-is:           Main.hs

    ghc-options:       -Wall -threaded

    -- This section is encoded by the template and any modules added by
    -- hand outside these namespaces will not correctly be added to the
    -- distribution package.
    other-modules:
          Test.AWS.S3
        , Test.AWS.Gen.S3
        , Test.AWS.S3.Internal

    build-depends:
          amazonka-core == 1.3.2.*
        , amazonka-test == 1.3.2.*
        , amazonka-s3 == 1.3.2.*
        , base
        , bytestring
        , lens
        , tasty
        , tasty-hunit
        , text
        , time
        , unordered-containers