Guest User

Untitled

a guest
Oct 18th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. Resources:
  2. DBLookupTable:
  3. Type: "AWS::DynamoDB::Table"
  4. Properties:
  5. AttributeDefinitions:
  6. -
  7. AttributeName: "gameId"
  8. AttributeType: "S"
  9. -
  10. AttributeName: "characterName"
  11. AttributeType: "S"
  12. KeySchema:
  13. -
  14. AttributeName: "gameId"
  15. KeyType: "HASH"
  16. -
  17. AttributeName: "characterName"
  18. KeyType: "RANGE"
  19. ProvisionedThroughput:
  20. ReadCapacityUnits: 1
  21. WriteCapacityUnits: 1
  22. TableName: characterData
Add Comment
Please, Sign In to add comment