Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created September 8, 2021 09:44
Show Gist options
  • Save velotiotech/4b69c55c6529bd3e800e89d50d6cbfcd to your computer and use it in GitHub Desktop.
Save velotiotech/4b69c55c6529bd3e800e89d50d6cbfcd to your computer and use it in GitHub Desktop.
resources:
Resources:
MetaDataDB:
Type: AWS::DynamoDB::Table
Properties:
TableName: your-dynamodb-table-name
AttributeDefinitions:
- AttributeName: username
AttributeType: S
- AttributeName: timestamp
AttributeType: N
KeySchema:
- AttributeName: username
KeyType: HASH
- AttributeName: timestamp
KeyType: RANGE
BillingMode: PAY_PER_REQUEST
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment