@@ -106,11 +106,11 @@ def put_item(self, **kwargs) -> dict[str, Any]:
106106 https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/put_item.html
107107
108108 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.
110110 The value in ``"Item"`` will be encrypted locally before being written to DynamoDB.
111111
112112 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.
114114
115115 """
116116 return self ._client_operation_logic (
@@ -135,10 +135,10 @@ def get_item(self, **kwargs) -> dict[str, Any]:
135135 https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/get_item.html
136136
137137 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.
139139
140140 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.
142142 The value in ``"Item"`` field be decrypted locally after being read from DynamoDB.
143143
144144 """
@@ -159,16 +159,16 @@ def query(self, **kwargs) -> dict[str, Any]:
159159 """
160160 Query items from a table or index. Decrypts any returned items.
161161
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:
163163
164164 https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/query.html
165165
166166 Args:
167167 **kwargs: Keyword arguments to pass to the operation. These match the boto3 query API parameters.
168168
169169 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.
172172
173173 """
174174 return self ._client_operation_logic (
@@ -193,10 +193,10 @@ def scan(self, **kwargs) -> dict[str, Any]:
193193 https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/scan.html
194194
195195 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.
197197
198198 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.
200200 The values in ``"Items"`` will be decrypted locally after being read from DynamoDB.
201201
202202 """
@@ -224,12 +224,12 @@ def batch_write_item(self, **kwargs) -> dict[str, Any]:
224224 https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/batch_write_item.html
225225
226226 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``
228228 request syntax. Items in ``"PutRequest"`` values in the ``"RequestItems"`` argument will be encrypted
229229 locally before being written to DynamoDB.
230230
231231 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.
233233
234234 """
235235 return self ._client_operation_logic (
@@ -258,7 +258,7 @@ def batch_get_item(self, **kwargs) -> dict[str, Any]:
258258 request syntax.
259259
260260 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.
262262 The values in ``"Responses"`` will be decrypted locally after being read from DynamoDB.
263263
264264 """
@@ -284,11 +284,11 @@ def transact_get_items(self, **kwargs) -> dict[str, Any]:
284284 https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/transact_get_items.html
285285
286286 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``
288288 request syntax.
289289
290290 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.
292292
293293 """
294294 return self ._client_operation_logic (
@@ -310,17 +310,17 @@ def transact_write_items(self, **kwargs) -> dict[str, Any]:
310310
311311 For put operations, encrypts items before writing.
312312
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:
314314
315315 https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dynamodb/client/transact_write_items.html
316316
317317 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``
319319 request syntax. Any ``"PutRequest"`` values in the ``"TransactItems"`` argument will be encrypted
320320 locally before being written to DynamoDB.
321321
322322 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.
324324
325325 """
326326 return self ._client_operation_logic (
0 commit comments