Skip to content

Instantly share code, notes, and snippets.

@merictaze
Created July 2, 2018 20:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save merictaze/0ce057b395b5c3ae88e79b6da08236b6 to your computer and use it in GitHub Desktop.
Save merictaze/0ce057b395b5c3ae88e79b6da08236b6 to your computer and use it in GitHub Desktop.
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