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