在 AWS CLI DynamoDB 查询操作中替换变量值

Substituting variable value in AWS CLI DynamoDB Query Operation

我正在编写一个 shell 脚本来从 dynamoDB table 查询一个属性。我正在使用 AWS CLI 编写脚本。

我想从 MY_TABLE_NAME 中为 ReferenceId gfsdgrhfsh 查找 AccountId。当我在 AttributeValueList 中提供属性的准确值时,查询操作成功并且我得到了正确的属性值。

aws dynamodb query --table-name MY_TABLE_NAME \
  --select SPECIFIC_ATTRIBUTES --attributes-to-get "AccountId" \
  --key-conditions '{"ReferenceId": {"AttributeValueList": [ {"S": "gfsdgrhfsh" } ], "ComparisonOperator": "EQ"} }' \
  --limit 1 | jq '.Items[0].AccountId.S'

以上命令为我提供了正确的帐户 ID。

但是,当我将 ReferenceId gfsdgrhfsh 分配给一个变量,然后将此变量放入命令中时,我没有收到响应。

referenceId=gfsdgrhfsh

aws dynamodb query --table-name MY_TABLE_NAME \
  --select SPECIFIC_ATTRIBUTES --attributes-to-get "AccountId" \
  --key-conditions '{"ReferenceId": {"AttributeValueList": [ {"S": "$referenceId" } ], "ComparisonOperator": "EQ"} }' \
  --limit 1 | jq '.Items[0].AccountId.S'

有人可以建议如何在命令中注入变量的值。我必须通过从文件中读取大量的referenceIds来执行查询操作,所以我需要在命令中注入变量值。

如有任何帮助,我们将不胜感激。

想通了,我们需要传递用双引号括起来的值。以下命令有效:

aws dynamodb query --table-name MY_TABLE_NAME \
  --select SPECIFIC_ATTRIBUTES --attributes-to-get "AccountId" \
  --key-conditions '{"ReferenceId": {"AttributeValueList": [ {"S": '\"$referenceId\"' } ], "ComparisonOperator": "EQ"} }' \
  --limit 1 | jq '.Items[0].AccountId.S'