File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ aws --profile lfproduct-prod dynamodb scan --table-name cla-prod-signatures --filter-expression " attribute_not_exists(#a) OR #a = :nullval" --expression-attribute-names ' {"#a":"date_created"}' --expression-attribute-values ' {":nullval":{"NULL":true}}' --select " COUNT"
3+ aws --profile lfproduct-prod dynamodb scan --table-name cla-prod-signatures --filter-expression " attribute_exists(#a)" --expression-attribute-names ' {"#a":"approx_date_created"}' --select " COUNT"
4+ aws --profile lfproduct-prod dynamodb scan --table-name cla-prod-signatures --filter-expression " attribute_not_exists(#a) OR #a = :nullval" --expression-attribute-names ' {"#a":"date_modified"}' --expression-attribute-values ' {":nullval":{"NULL":true}}' --select " COUNT"
5+ aws --profile lfproduct-prod dynamodb scan --table-name cla-prod-signatures --filter-expression " attribute_exists(#a)" --expression-attribute-names ' {"#a":"approx_date_modified"}' --select " COUNT"
You can’t perform that action at this time.
0 commit comments