我正在嘗試從我的 dynamodb 表中返回項目計數(shù)。我已經(jīng)有一個 getLiveItemCount() 函數(shù),它看起來像這樣:func GetLiveItemCount(tableName string) *int64 { dynamodbClient := createDynamoDBClient() items, _ := dynamodbClient.Scan(&dynamodb.ScanInput{ TableName: aws.String(tableName), }) return items.Count}但是,我希望有另一個函數(shù)可以從項目摘要使用的最近更新的項目指標(biāo)中返回項目計數(shù)(項目摘要包括item count、table size和Average item size每 6 小時更新一次)。有什么辦法可以在 Golang 中獲取這個值嗎?
1 回答

GCT1015
TA貢獻1827條經(jīng)驗 獲得超4個贊
要獲取這些值,您可以調(diào)用 DescribeTable:
https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_DescribeTable.html
- 1 回答
- 0 關(guān)注
- 99 瀏覽
添加回答
舉報
0/150
提交
取消