GetDynamoDBプロセッサをnifiで使用してDynamoDBからデータを取得しようとしていますが、Json Document属性以外のすべての必須フィールドを提供していますフィールド。 nifiでGetDynamoDBプロセッサのJson Document属性を設定する方法
入力データ:
{
"ProductCatalog": [
{
"PutRequest": {
"Item": {
"Id": {
"N": "101"
},
"Title": {
"S": "Book 101 Title"
},
"ISBN": {
"S": "111-1111111111"
},
"Authors": {
"L": [
{
"S": "Author1"
}
]
},
"Price": {
"N": "2"
},
"Dimensions": {
"S": "8.5 x 11.0 x 0.5"
},
"PageCount": {
"N": "500"
},
"InPublication": {
"BOOL": true
},
"ProductCategory": {
"S": "Book"
}
}
}
}]
}
いずれかを理解することができます。
ありがとうございます、私はjsonのドキュメント属性でkeyを指定して解決しました – MarHserus