Skip to content

Commit 72eadd1

Browse files
author
Lucas McDonald
committed
m
1 parent 8761c9e commit 72eadd1

File tree

1 file changed

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

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ 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 client ``put_item`` request syntax.
110-
The value in ``"Item"`` will be encrypted locally before being written to DynamoDB.
109+
**kwargs: Keyword arguments to pass to the operation. This matches the boto3 client ``put_item`` request
110+
syntax. The value in ``"Item"`` will be encrypted locally before being written to DynamoDB.
111111
112112
Returns:
113113
dict: The response from DynamoDB. This matches the boto3 client ``put_item`` response syntax.
@@ -135,7 +135,8 @@ 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 client ``get_item`` request syntax.
138+
**kwargs: Keyword arguments to pass to the operation. This matches the boto3 client ``get_item`` request
139+
syntax.
139140
140141
Returns:
141142
dict: The response from DynamoDB. This matches the boto3 client ``get_item`` response syntax.

0 commit comments

Comments
 (0)