ダイナモdbローカルでストリームサポートが動作していないようですが、サポートされていますか?私は、彼らがしていることを見つけることができる唯一の表示は、のcreateTableまたはdescribeTableローカルDynamodbのストリームサポートですか?
次のコードを呼び出すときに何LatestStreamArnがないのでStreamSpecificationが無視されることが表示されます、DynamoDBの地元でhttp://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tools.DynamoDBLocal.html#Tools.DynamoDBLocal.Differences
で非常に最後の箇条書きですリターンは、管理DynamoDBのサービスとLatestStreamArnが、地元DynamoDBのではない:
ddb.createTable({
TableName: 'streaming_test',
AttributeDefinitions: [
{ AttributeName: 'id', AttributeType: 'S' }
],
KeySchema: [
{ AttributeName: 'id', KeyType: 'HASH' }
],
ProvisionedThroughput: {
ReadCapacityUnits: 5,
WriteCapacityUnits: 5
},
StreamSpecification: {
StreamEnabled: true,
StreamViewType: 'NEW_AND_OLD_IMAGES'
}
}, function (err, data) {
if (err) {
console.log(err, err.stack)
} else {
// data.TableDescription.StreamSpecification and
// data.TableDescription.LatestStreamArn are undefined
// for dynamodb local
console.log(data)
}
})