Skip to content

Instantly share code, notes, and snippets.

@metaskills
Created March 2, 2023 01:19
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 metaskills/88d04470c8caa259bb07427e2477615a to your computer and use it in GitHub Desktop.
Save metaskills/88d04470c8caa259bb07427e2477615a to your computer and use it in GitHub Desktop.
DataTable:
Type: AWS::DynamoDB::Table
Properties:
KeySchema:
- AttributeName: scopeID
KeyType: HASH
- AttributeName: dataID
KeyType: RANGE
AttributeDefinitions:
- AttributeName: scopeID
AttributeType: S
- AttributeName: dataID
AttributeType: S
BillingMode: PAY_PER_REQUEST
TimeToLiveSpecification:
AttributeName: ttl
Enabled: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment