for more information visit the package's GitHub page
Package contains the following modules:
This is a Fork from the-sett/elm-aws-core.
It fixes the handling of signingName
and "Content-Type"
for REST_JSON
requests.
This package provides the functionality needed to make HTTP requests to AWS services.
All AWS service calls must be signed correctly, in order to pass on the authorized credentials of the caller to the service. AWS has multiple signing schemes that different services use, specifically 'S3' and 'V4'.
The AWS service portfolio is large with variations in signing schemes, AWS regions and service protocols across it. The aim of this package is to provide functions to build signed HTTP requests correctly for all of the services available on AWS. The specific service interface can then be implemented with this package as a foundational element.
ServiceConfig
describing the
protocol, signing scheme, base URL and so on for a service.ServiceConfig
into a Service
definition, needed to make HTTP calls to that service.Service
and
some Credentials
.Credentials
used to sign
requests.KVEncode
as only needed for interpreting fairly
simple response headers.