I am trying to create a AWS SAM. My Lambda does some write operation on DynamoDB table and the table provisioned throughput should be Autoscaled. How can I mention in the template.yml
file?
here is my table definition
Resources:
myDB:
Type: AWS::DynamoDB::Table
Properties:
TableName: my-awesome-database
AttributeDefinitions:
- AttributeName: e_id
AttributeType: S
KeySchema:
- AttributeName: e_id
KeyType: HASH
GlobalSecondaryIndexes:
- IndexName: my-awesome-database-index
KeySchema:
- AttributeName: es
KeyType: HASH
- AttributeName: ts
KeyType: RANGE
Projection:
ProjectionType: ALL
Autoscaling of DynamoDB is not a property of DynamoDB. Instead, it is a property of Application Auto Scaling and you should use its resources to define scaling for your table.
An example for read-capacity auto-scaling with fixed table definition (your DynamoDB table is incorrect) is below. For auto-scaling write capacity you have to add similar resources.