Skip to content

Commit a472eab

Browse files
author
Lucas McDonald
committed
m
1 parent f11765b commit a472eab

File tree

1 file changed

+5
-5
lines changed
  • DynamoDbEncryption/runtimes/python/src/aws_dbesdk_dynamodb/encrypted

1 file changed

+5
-5
lines changed

DynamoDbEncryption/runtimes/python/src/aws_dbesdk_dynamodb/encrypted/client.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def get_item(self, **kwargs) -> dict[str, Any]:
139139
140140
Returns:
141141
dict: The response from DynamoDB. This matches the boto3 ``get_item`` response syntax.
142-
The value in ``"Item"`` field be decrypted locally after being read from DynamoDB.
142+
The value in ``"Item"`` field be decrypted locally after being read from DynamoDB.
143143
144144
"""
145145
return self._client_operation_logic(
@@ -197,7 +197,7 @@ def scan(self, **kwargs) -> dict[str, Any]:
197197
198198
Returns:
199199
dict: The response from DynamoDB. This matches the boto3 ``scan`` response syntax.
200-
The values in ``"Items"`` will be decrypted locally after being read from DynamoDB.
200+
The values in ``"Items"`` will be decrypted locally after being read from DynamoDB.
201201
202202
"""
203203
return self._client_operation_logic(
@@ -225,7 +225,7 @@ def batch_write_item(self, **kwargs) -> dict[str, Any]:
225225
226226
Args:
227227
**kwargs: Keyword arguments to pass to the operation. This matches the boto3 ``batch_write_item``
228-
request syntax. Any ``"PutRequest"`` values in the ``"RequestItems"`` argument will be encrypted
228+
request syntax. Items in ``"PutRequest"`` values in the ``"RequestItems"`` argument will be encrypted
229229
locally before being written to DynamoDB.
230230
231231
Returns:
@@ -259,7 +259,7 @@ def batch_get_item(self, **kwargs) -> dict[str, Any]:
259259
260260
Returns:
261261
dict: The response from DynamoDB. This matches the boto3 ``batch_get_item`` response syntax.
262-
The values in ``"Responses"`` will be decrypted locally after being read from DynamoDB.
262+
The values in ``"Responses"`` will be decrypted locally after being read from DynamoDB.
263263
264264
"""
265265
return self._client_operation_logic(
@@ -363,7 +363,7 @@ def get_paginator(self, operation_name: str) -> EncryptedPaginator | botocore.cl
363363
364364
Returns:
365365
EncryptedPaginator | botocore.client.Paginator: An EncryptedPaginator that will transparently decrypt items
366-
for ``scan``/``query`` operations; for other operations, the standard paginator.
366+
for ``scan``/``query`` operations; for other operations, the standard paginator.
367367
368368
"""
369369
paginator = self._client.get_paginator(operation_name)

0 commit comments

Comments
 (0)