2013-05-05 59 views

回答

1

是的,您可以使用DescribeTable操作。

如果您使用適用於PHP的AWS開發工具包,則可以參考API docs for DescribeTable

這裏是你如何獲得價值的例子:

// Run the DescribeTable command 
$result = $dynamoDbClient->describeTable(array('TableName' => 'TAB_A')); 

// Drill down into the results 
$keys = $result->getPath('TableDescription/KeySchema/*/AttributeName'); 
print_r($keys); 
#> Array ([0] => 'KEY_A') 
+0

謝謝,它工作正常。 – Achintha 2013-05-06 17:12:57

相關問題