【发布时间】:2016-10-28 07:55:27
【问题描述】:
我想通过 dynamoDB 创建表 User,其中包含一些由 swagger 设计的属性:
User {
id (string, optional): UUID of User ,
name (string, optional),
lastLoginedAt (string, optional),
avatar (Avatar, optional),
}
Avatar {
avatarId (string, optional):,
iconUri (string, optional),
message (string, optional),
}
并且希望User 会在 putItem 之后以 json 响应,如下所示:
{
"id": "string",
"name": "string",
"lastLoginedAt": "2016-06-24 15:28:26",
"avatar": {
"avatarId": "string",
"iconUri": "string",
"message": "string"
},
}
我是初学者 Dynamodb,我仍然坚持使用创建表,这里是我的代码:
$dynamodb->createTable([
'TableName' => 'User',
'AttributeDefinitions' => [
[ 'AttributeName' => 'id', 'AttributeType' => 'S' ],
[ 'AttributeName' => 'name', 'AttributeType' => 'S' ],
[ 'AttributeName' => 'avatar', 'AttributeType' => 'S' ]
],
'KeySchema' => [
[ 'AttributeName' => 'id', 'KeyType' => 'HASH' ],
[ 'AttributeName' => 'name', 'KeyType' => 'RANGE' ]
],
'GlobalSecondaryIndexes' => [
[
'IndexName' => 'avatarIndex',
'KeySchema' => [
[ 'AttributeName' => 'avatarId', 'KeyType' => 'HASH' ],
[ 'AttributeName' => 'id', 'KeyType' => 'RANGE' ]
],
'Projection' => [
'ProjectionType' => 'INCLUDE',
'NonKeyAttributes' => [ 'iconUri', 'message' ]
],
'ProvisionedThroughput' => [
'ReadCapacityUnits' => 5,
'WriteCapacityUnits' => 5
]
]
],
'ProvisionedThroughput' => [
'ReadCapacityUnits' => 5,
'WriteCapacityUnits' => 5
]]);
这是错误:
local.ERROR: Error executing "CreateTable" on "http://172.18.0.5:8000"; AWS HTTP error: Client error: `POST http://172.18.0.5:8000` resulted in a `400 Bad Request` response:{"__type":"com.amazon.coral.validate#ValidationException","message":"Global Secondary Index hash key not specified in At (truncated...)
ValidationException (client): Global Secondary Index hash key not specified in Attribute Definitons.Type unknown. - {"__type":"com.amazon.coral.validate#ValidationException","message":"Global Secondary Index hash key not specified in Attribute Definitons.Type unknown."}
提前感谢!
【问题讨论】:
-
@HarshalBulsara 我已经添加了它
标签: php amazon-dynamodb swagger create-table