Guest User

Untitled

a guest
Nov 18th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. Resources:
  2. ItemsTable:
  3. Type: "AWS::DynamoDB::Table"
  4. Properties:
  5. TableName: "InvoiceConfig"
  6. AttributeDefinitions:
  7. - AttributeName: "providerName"
  8. AttributeType: "S"
  9. KeySchema:
  10. - AttributeName: "providerName"
  11. KeyType: "HASH"
  12. ProvisionedThroughput:
  13. ReadCapacityUnits: 2
  14. WriteCapacityUnits: 2
  15. DifferentTermsPages:
  16. Type: "AWS::DynamoDB::Table"
  17. Properties:
  18. TableName: "DifferentTermsPages"
  19. AttributeDefinitions:
  20. - AttributeName: "id"
  21. AttributeType: "S"
  22. KeySchema:
  23. - AttributeName: "id"
  24. KeyType: "HASH"
  25. ProvisionedThroughput:
  26. ReadCapacityUnits: 10
  27. WriteCapacityUnits: 10
Add Comment
Please, Sign In to add comment