AWS client library for D: DynamoDB and S3, using the AWS CLI. Uses instance profile on EC2 or AWS_PROFILE / default credentials locally.
Add to your dub.json:
"dependencies": {
"aws-d": {"path": "../aws-d"}
}Then:
import aws.dynamodb; // getDynamoDBConfig, dynamoDBScan, dynamoDBGetItem, dynamoDBPutItem, ...
import aws.s3; // getS3Config, s3Download, s3ListObjects, S3ObjectInfo, ...
// or
import aws;- DynamoDB:
AWS_REGION,DYNAMODB_TABLE_WORKSPACES,DYNAMODB_TABLE_ANALYSES,DYNAMODB_TABLE_DATASETS - S3:
S3_BUCKET,AWS_REGION
Requires the AWS CLI installed and configured.