File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
DynamoDbEncryption/runtimes/python/src/aws_database_encryption_sdk/encryptor Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,9 @@ def encrypt_python_item(
49
49
transform the encrypted DynamoDB JSON into an encrypted Python dictionary,
50
50
then return the encrypted Python dictionary.
51
51
52
+ See the boto3 documentation for details on Python/DynamoDB type transfomations:
53
+ https://boto3.amazonaws.com/v1/documentation/api/latest/_modules/boto3/dynamodb/types.html
54
+
52
55
boto3 DynamoDB Tables and Resources expect items formatted as native Python dictionaries.
53
56
Use this method to encrypt an item if you intend to pass the encrypted item
54
57
to a boto3 DynamoDB Table or Resource interface to store it.
@@ -162,6 +165,9 @@ def decrypt_python_item(
162
165
transform the plaintext DynamoDB JSON into a plaintext Python dictionary,
163
166
then return the plaintext Python dictionary.
164
167
168
+ See the boto3 documentation for details on Python/DynamoDB type transfomations:
169
+ https://boto3.amazonaws.com/v1/documentation/api/latest/_modules/boto3/dynamodb/types.html
170
+
165
171
boto3 DynamoDB Tables and Resources return items formatted as native Python dictionaries.
166
172
Use this method to decrypt an item if you retrieve the encrypted item
167
173
from a boto3 DynamoDB Table or Resource interface.
You can’t perform that action at this time.
0 commit comments