serverlessExample-dynamoDB-table-characterData
Resources: | |
DBLookupTable: | |
Type: "AWS::DynamoDB::Table" | |
Properties: | |
AttributeDefinitions: | |
- | |
AttributeName: "gameId" | |
AttributeType: "S" | |
- | |
AttributeName: "characterName" | |
AttributeType: "S" | |
KeySchema: | |
- | |
AttributeName: "gameId" | |
KeyType: "HASH" | |
- | |
AttributeName: "characterName" | |
KeyType: "RANGE" | |
ProvisionedThroughput: | |
ReadCapacityUnits: 1 | |
WriteCapacityUnits: 1 | |
TableName: characterData |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment