bash示例命令
token=null;
aws dynamodb scan --table-name MyTable --index-name nyIndex --max-items 5 --starting-token $token
我正在for循环中进行扫描,找不到--starting-token
的第一个/默认值是什么。
已尝试令牌= 0,令牌=“”,令牌=空,示例错误消息
Parameter validation failed:
Invalid type for parameter ExclusiveStartKey, value: 0, type: <type 'unicode'>, valid types: <type 'dict'>
答案 0 :(得分:0)
-起始令牌(字符串) -用于指定从何开始分页的令牌。这是 NextToken 来自先前被截断的响应。 有关用法示例,请参阅《 AWS Command Line Interface用户指南》中的“分页”。
https://docs.aws.amazon.com/cli/latest/reference/dynamodb/scan.html https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-pagination.html
对于第一次执行,请勿指定参数或值。收集令牌的返回值(如果有)并继续使用。