dynomite 0.10.0

Provides set of high-level productive DynamoDB interfaces
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Resources:
  DDBTable:
    Type: AWS::DynamoDB::Table
    Properties:
      TableName: "books"
      AttributeDefinitions:
        - AttributeName: "id"
          AttributeType: "S"
        - AttributeName: "title"
          AttributeType: "S"
      KeySchema:
        - AttributeName: "id"
          KeyType: "HASH"
      ProvisionedThroughput:
        ReadCapacityUnits: 1
        WriteCapacityUnits: 1