Ключ раздела находится в ответе на действие DescribeTable
в разделе KeySchema
. Это атрибут с KeyType: HASH
.
См. Получение информации о таблице . В примере ответом является
{
"Table": {
"AttributeDefinitions": [
{
"AttributeName": "Artist",
"AttributeType": "S"
},
{
"AttributeName": "SongTitle",
"AttributeType": "S"
}
],
"TableName": "Music",
"KeySchema": [
{
"AttributeName": "Artist",
"KeyType": "HASH" //Partition key <<<<<<=============
},
{
"AttributeName": "SongTitle",
"KeyType": "RANGE" //Sort key
}
],
...
}