query package:aws
Construct a minimal
Query request.
Implementation of Amazon DynamoDb Query command.
See:
http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_Query.html
A Query command that uses primary keys for an expedient scan.
queryList f prefix xs constructs a query list from a list of
elements xs, using a common prefix prefix, and a
transformer function f.
A dot (.) is interspersed between prefix and generated key.
Example:
queryList swap "pfx" [("a", "b"), ("c", "d")] evaluates to
[("pfx.b", "a"), ("pfx.d", "c")] (except with ByteString
instead of String, of course).
Create a URI fro a
SignedQuery object.
Unused / incompatible fields will be silently ignored.
Response to a
Query query.
What to return from a Query or Scan query.
Tag type for normal queries.
Tag type for URI-only queries.
POST method. Put all request parameters in a query string and HTTP
headers, but send the query string as a POST payload
A "signable" request object. Assembles together the Query, and signs
it in one go.
A pre-signed medium-level request object.
Constructs a
SignedQuery with the specified request parameters.