awvvo_dynamodb 1.0.5
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();
}