回答編集履歴

1

追記1

2021/04/26 12:04

投稿

takapi_cs
takapi_cs

スコア349

test CHANGED
@@ -63,3 +63,43 @@
63
63
  [ConditionExpression](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_PutItem.html#DDB-PutItem-request-ConditionExpression)
64
64
 
65
65
  [Qiita - 【DynamoDB】トランザクションを効かせて書き込みを行う【.Net】](https://qiita.com/wrongwrong/items/89ba0adee8220304d032)
66
+
67
+
68
+
69
+
70
+
71
+ ---
72
+
73
+
74
+
75
+ 追記(2021/04/26)
76
+
77
+
78
+
79
+ 下記リンクの予約語の注記に、以下のような説明がありました。
80
+
81
+
82
+
83
+ > 属性名が数値で始まるか、スペース、特殊文字、または予約語を含む場合、式の属性名を使用して式のその属性名を置き換える必要があります。
84
+
85
+
86
+
87
+ 「属性名が(中略)予約語を含む場合」という表現になっているので、属性名に`domain`をまったく含まない状態にしてみてはいかがでしょうか?
88
+
89
+
90
+
91
+ ```C#
92
+
93
+ ExpressionAttributeNames = new Dictionary<string, string>
94
+
95
+ {
96
+
97
+ { "#d", "domain" }
98
+
99
+ },
100
+
101
+ ```
102
+
103
+
104
+
105
+ [DynamoDB の式の属性名](https://docs.aws.amazon.com/ja_jp/amazondynamodb/latest/developerguide/Expressions.ExpressionAttributeNames.html)