Skip to content

Instantly share code, notes, and snippets.

@merictaze
Created July 2, 2018 20:20
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
OrderTable:
Type: 'AWS::DynamoDB::Table'
Properties:
AttributeDefinitions:
- AttributeName: 'orderId'
AttributeType: 'S'
KeySchema:
- AttributeName: 'orderId'
KeyType: 'HASH'
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
TableName: 'OrderTable'
StreamSpecification:
StreamViewType: 'NEW_IMAGE'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment