awvvo_dynamodb 1.0.5 copy "awvvo_dynamodb: ^1.0.5" to clipboard
awvvo_dynamodb: ^1.0.5 copied to clipboard

Wrapper for AWS DynamoDB

example/awvvo_dynamodb_example.dart

import 'package:aws_dynamodb_api/dynamodb-2012-08-10.dart';
import 'package:awvvo_dynamodb/awvvo_dynamodb.dart';

main() async {
  String region = 'us-east-1';
  String accessKey = "xx";
  String secretKey = "xx+xx";

  var db = AWDynamoDB(region: region, accessKey: accessKey, secretKey: secretKey);

  List<Map<String, AttributeValue>> x =await db.list(tableName: "piradio-log");

  // loop through the list of tables
  for (var item in x) {
    print(item['description']?.s);
  }

  db.close();
}
1
likes
125
points
34
downloads

Publisher

unverified uploader

Weekly Downloads

Wrapper for AWS DynamoDB

Repository

Documentation

API reference

License

MIT (license)

Dependencies

aws_dynamodb_api

More

Packages that depend on awvvo_dynamodb