This message was deleted.
# aws
s
This message was deleted.
b
Are you looking to use the items retrieved in your pulumi program?
h
yes right
b
So I did some experimenting and the ID that you can get out of the tableItem resource is of the format
{tablename}|{hashkeyname}||{hashkeyvalue}||{rangekeyname}||{rangekeyvalue}|
(so swap the {} values for what you have - in the example that you get from https://www.pulumi.com/docs/reference/pkg/aws/dynamodb/tableitem/ you get something like
exampleTable-9d70e8a|exampleHashKey||something|
(because it doesn't have a rangekey). So you can pass that into the ID parameter of the look up function
h
thanks Pier, I will try that