Skip to content
forked from vibe-aws/vibe-aws

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

Notifications You must be signed in to change notification settings

yannick/vibe-aws

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

vibe-aws

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"]);

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • D 100.0%