File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
DynamoDbEncryption/runtimes/python
Examples/runtimes/python/DynamoDBEncryption/src/basic_put_get_example Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ Modules
15
15
aws_dbesdk_dynamodb.encrypted.item
16
16
aws_dbesdk_dynamodb.encrypted.resource
17
17
aws_dbesdk_dynamodb.encrypted.paginator
18
+ aws_dbesdk_dynamodb.smithygenerated.aws_cryptography_dbencryptionsdk_dynamodb.models
19
+ aws_dbesdk_dynamodb.smithygenerated.aws_cryptography_dbencryptionsdk_structuredencryption.models
20
+
18
21
19
22
.. include :: ../../../../CHANGELOG.md
20
23
:parser: myst_parser.docutils _
Original file line number Diff line number Diff line change 7
7
from .internaldafny .generated import module_
8
8
from .internaldafny import extern
9
9
10
+ # Export user-friendly access paths
11
+ import aws_dbesdk_dynamodb .smithygenerated .aws_cryptography_dbencryptionsdk_dynamodb as dynamodb
12
+ import aws_dbesdk_dynamodb .smithygenerated .aws_cryptography_dbencryptionsdk_structuredencryption as structured_encryption
13
+
14
+ __all__ = [
15
+ dynamodb ,
16
+ structured_encryption ,
17
+ ]
18
+
10
19
"""
11
20
boto3 uses Python's decimal library to deserialize numbers retrieved by resources
12
21
(Tables, etc.) from strings to `decimal.Decimal`s.
Original file line number Diff line number Diff line change 20
20
)
21
21
from aws_cryptographic_material_providers .mpl .references import IKeyring
22
22
from aws_dbesdk_dynamodb .encrypted .client import EncryptedClient
23
- from aws_dbesdk_dynamodb .smithygenerated . aws_cryptography_dbencryptionsdk_dynamodb . models import (
23
+ from aws_dbesdk_dynamodb .models . dynamodb import (
24
24
DynamoDbTableEncryptionConfig ,
25
25
DynamoDbTablesEncryptionConfig ,
26
26
)
27
- from aws_dbesdk_dynamodb .smithygenerated . aws_cryptography_dbencryptionsdk_structuredencryption . models import (
27
+ from aws_dbesdk_dynamodb .models . structured_encryption import (
28
28
CryptoAction ,
29
29
)
30
30
You can’t perform that action at this time.
0 commit comments