@@ -106,11 +106,11 @@ def put_item(self, **kwargs) -> dict[str, Any]:
106
106
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/put_item.html
107
107
108
108
Args:
109
- **kwargs: Keyword arguments to pass to the operation. This matches the boto3 ``put_item`` request syntax.
109
+ **kwargs: Keyword arguments to pass to the operation. This matches the boto3 client ``put_item`` request syntax.
110
110
The value in ``"Item"`` will be encrypted locally before being written to DynamoDB.
111
111
112
112
Returns:
113
- dict: The response from DynamoDB. This matches the boto3 ``put_item`` response syntax.
113
+ dict: The response from DynamoDB. This matches the boto3 client ``put_item`` response syntax.
114
114
115
115
"""
116
116
return self ._client_operation_logic (
@@ -135,10 +135,10 @@ def get_item(self, **kwargs) -> dict[str, Any]:
135
135
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_item.html
136
136
137
137
Args:
138
- **kwargs: Keyword arguments to pass to the operation. This matches the boto3 ``get_item`` request syntax.
138
+ **kwargs: Keyword arguments to pass to the operation. This matches the boto3 client ``get_item`` request syntax.
139
139
140
140
Returns:
141
- dict: The response from DynamoDB. This matches the boto3 ``get_item`` response syntax.
141
+ dict: The response from DynamoDB. This matches the boto3 client ``get_item`` response syntax.
142
142
The value in ``"Item"`` field be decrypted locally after being read from DynamoDB.
143
143
144
144
"""
@@ -159,16 +159,16 @@ def query(self, **kwargs) -> dict[str, Any]:
159
159
"""
160
160
Query items from a table or index. Decrypts any returned items.
161
161
162
- The parameters and return value match the boto3 DynamoDB query API:
162
+ The input and output syntaxes match those for the boto3 DynamoDB client `` query`` API:
163
163
164
164
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/query.html
165
165
166
166
Args:
167
167
**kwargs: Keyword arguments to pass to the operation. These match the boto3 query API parameters.
168
168
169
169
Returns:
170
- dict: The response from DynamoDB. This matches the boto3 query API response.
171
- The "Items" field will be decrypted locally after being read from DynamoDB.
170
+ dict: The response from DynamoDB. This matches the boto3 client `` query`` API response.
171
+ The `` "Items"`` field will be decrypted locally after being read from DynamoDB.
172
172
173
173
"""
174
174
return self ._client_operation_logic (
@@ -193,10 +193,10 @@ def scan(self, **kwargs) -> dict[str, Any]:
193
193
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/scan.html
194
194
195
195
Args:
196
- **kwargs: Keyword arguments to pass to the operation. This matches the boto3 ``scan`` request syntax.
196
+ **kwargs: Keyword arguments to pass to the operation. This matches the boto3 client ``scan`` request syntax.
197
197
198
198
Returns:
199
- dict: The response from DynamoDB. This matches the boto3 ``scan`` response syntax.
199
+ dict: The response from DynamoDB. This matches the boto3 client ``scan`` response syntax.
200
200
The values in ``"Items"`` will be decrypted locally after being read from DynamoDB.
201
201
202
202
"""
@@ -224,12 +224,12 @@ def batch_write_item(self, **kwargs) -> dict[str, Any]:
224
224
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/batch_write_item.html
225
225
226
226
Args:
227
- **kwargs: Keyword arguments to pass to the operation. This matches the boto3 ``batch_write_item``
227
+ **kwargs: Keyword arguments to pass to the operation. This matches the boto3 client ``batch_write_item``
228
228
request syntax. Items in ``"PutRequest"`` values in the ``"RequestItems"`` argument will be encrypted
229
229
locally before being written to DynamoDB.
230
230
231
231
Returns:
232
- dict: The response from DynamoDB. This matches the boto3 ``batch_write_item`` response syntax.
232
+ dict: The response from DynamoDB. This matches the boto3 client ``batch_write_item`` response syntax.
233
233
234
234
"""
235
235
return self ._client_operation_logic (
@@ -258,7 +258,7 @@ def batch_get_item(self, **kwargs) -> dict[str, Any]:
258
258
request syntax.
259
259
260
260
Returns:
261
- dict: The response from DynamoDB. This matches the boto3 ``batch_get_item`` response syntax.
261
+ dict: The response from DynamoDB. This matches the boto3 client ``batch_get_item`` response syntax.
262
262
The values in ``"Responses"`` will be decrypted locally after being read from DynamoDB.
263
263
264
264
"""
@@ -284,11 +284,11 @@ def transact_get_items(self, **kwargs) -> dict[str, Any]:
284
284
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/transact_get_items.html
285
285
286
286
Args:
287
- **kwargs: Keyword arguments to pass to the operation. This matches the boto3 ``transact_get_items``
287
+ **kwargs: Keyword arguments to pass to the operation. This matches the boto3 client ``transact_get_items``
288
288
request syntax.
289
289
290
290
Returns:
291
- dict: The response from DynamoDB. This matches the boto3 ``transact_get_items`` response syntax.
291
+ dict: The response from DynamoDB. This matches the boto3 client ``transact_get_items`` response syntax.
292
292
293
293
"""
294
294
return self ._client_operation_logic (
@@ -310,17 +310,17 @@ def transact_write_items(self, **kwargs) -> dict[str, Any]:
310
310
311
311
For put operations, encrypts items before writing.
312
312
313
- The input and output syntaxes match those for the boto3 DynamoDB ``transact_write_items`` API:
313
+ The input and output syntaxes match those for the boto3 DynamoDB client ``transact_write_items`` API:
314
314
315
315
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/transact_write_items.html
316
316
317
317
Args:
318
- **kwargs: Keyword arguments to pass to the operation. This matches the boto3 ``transact_write_items``
318
+ **kwargs: Keyword arguments to pass to the operation. This matches the boto3 client ``transact_write_items``
319
319
request syntax. Any ``"PutRequest"`` values in the ``"TransactItems"`` argument will be encrypted
320
320
locally before being written to DynamoDB.
321
321
322
322
Returns:
323
- dict: The response from DynamoDB. This matches the boto3 ``transact_write_items`` response syntax.
323
+ dict: The response from DynamoDB. This matches the boto3 client ``transact_write_items`` response syntax.
324
324
325
325
"""
326
326
return self ._client_operation_logic (
0 commit comments