Guest User

Untitled

a guest
Apr 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. Description: Creación de tablas transversales
  2.  
  3. Resources:
  4. DynamoDbTable:
  5. Type: AWS::DynamoDB::Table
  6. Properties:
  7. TableName: serverless-log-messages
  8. AttributeDefinitions:
  9. - AttributeName: id
  10. AttributeType: S
  11. - AttributeName: transactionId
  12. AttributeType: S
  13. KeySchema:
  14. - AttributeName: id
  15. KeyType: HASH
  16. - AttributeName: transactionId
  17. KeyType: RANGE
  18. ProvisionedThroughput:
  19. ReadCapacityUnits: 5
  20. WriteCapacityUnits: 5
Add Comment
Please, Sign In to add comment