vibe-aws ~master

AWS client library for D


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

vibe-aws Build Status

An AWS client library for the D programming language, based on the vibe.d framework.

Supported Services

I'm implementing this along with another project, as far as I need it, so it may not have all of AWS's features, but it's a start. For one thing, you won't need to implement the AWS request signing again if you take this code :).

Right now, the services supported are:

  • DynamoDB

DynamoDB

Only simple puts and gets are supported yet:

    import std.stdio;
    import vibe.aws.dynamodb;

    auto creds = new StaticAWSCredentials("keyId", "secretKey");
    auto ddb = new DynamoDB("us-east-1", creds);
    auto table = ddb.table("mytable");

    auto item1 = Item().set("key", "value");
    ddb.put(item1);

    auto item2 = ddb.get("key", "value");
    writeln(item2["key"]);
Authors:
  • rix0rrr
  • Stephan Dilly
Dependencies:
vibe-d
Versions:
0.1.6 2018-Apr-04
0.1.5 2018-Mar-13
0.1.4 2018-Jan-07
0.1.3 2018-Jan-06
0.1.2 2018-Jan-05
Show all 6 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 1 downloads this month

  • 505 downloads total

Score:
2.1
Short URL:
vibe-aws.dub.pm